c – 会员类型是如何实现的?

前端之家收集整理的这篇文章主要介绍了c – 会员类型是如何实现的?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在看这个资源:

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

例如,迭代器成员类对类矢量.

一个“成员类型”是否简单地被实现为一个typedef或类似于vector类的东西?我不清楚“会员类型”实际上是什么意思,我看过几本C教科书,根本就没有提到这个短语.

解决方法

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
原文链接:https://www.f2er.com/c/114049.html

猜你在找的C&C++相关文章