22

我在看这个资源:

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

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

“成员类型”会简单地实现为 typedef 或向量类中的类似内容吗?我不清楚“成员类型”实际上是什么意思,而且我看过几本 C++ 教科书,他们甚至根本没有提到这个短语。

4

3 回答 3

40

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
于 2012-12-26T07:42:06.493 回答
2

成员类型仅代表作为(该类的)成员的类型。它可能是typedef您所说的 a (如果vector它可能是T*),也可能是嵌套的class(或struct)。

于 2012-12-26T07:31:24.953 回答
2

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

于 2012-12-26T07:35:21.430 回答