成员类型如何实施?

时间:2012-12-26 07:28:45

标签: c++

我在看这个资源:

http://www.cplusplus.com/reference/vector/vector/

例如,类向量上的迭代器成员类型

“成员类型”是否只是在vector类中实现为typedef或类似的东西?我不清楚“成员类型”究竟意味着什么,而且我看了几本C ++教科书,他们根本就没有提到这句话。

3 个答案:

答案 0 :(得分:31)

C ++标准也不使用这个短语。相反,它会将其称为嵌套类型名称(§9.9)。

有四种方法可以获得一个:

class C
{
public:
   typedef int int_type;       // as a nested typedef-name
   using float_type = float;   // C++11: typedef-name declared using 'using'

   class inner_type { /*...*/ };   // as a nested class or struct

   enum enum_type { one, two, three };  // nested enum (or 'enum class' in C++11)
};

嵌套类型名称在类范围中定义,并且为了从该范围外引用它们,需要进行名称限定:

int_type     a1;          // error, 'int_type' not known
C::int_type  a2;          // OK
C::enum_type a3 = C::one; // OK

答案 1 :(得分:1)

成员类型只代表属于该类成员的类型。它可以是typedef(如果vector可能是T*),或者可以嵌套class(或struct )。

答案 2 :(得分:1)

成员类型可以引用'嵌套类'或'嵌套结构'。 它意味着另一个类内的类。如果您想参考教科书,请搜索“嵌套类”。