The code below isn't correct and I understand why, get_point
returns a value whose type is unknown outside the class:
class C {
typedef std::pair<double, double> Point;
public:
Point get_point() const;
};
Point C::get_point() const {
[...]
}
But why isn't the code below correct? The local type isn't used outside the class!
class C {
typedef std::pair<double, double> Point;
private:
Point get_point() const;
};
Point C::get_point() const {
[...]
}
When we use C::
we should be inside the class, so we should be able to use Point
!
It is a valid code. Here is a demonstrative program
The program output is
You may not only use name
C::Point
that is an alias for typestd::pair<double, double>
.As for this code
then you have to write
An unqualified name used as the return type of a class member function defined outside the class definition is searched in the scope where the class is defined. And there is no name Point. You have to use a qualified name.