标签:unsigned ring 类类型 contents std return size_type 定义 pos
类成员再探
定义一个类型成员:
#include <iostream> #include <string> using namespace std; class Screen { public: using pos = string::size_type; /* 这就是“类型成员”,必须先定义后使用(p232) 等价声明: typedef string::size_type pos; string::size_type 一般是 unsigned int */ private: pos cursor = 0; // 光标的位置 pos height = 0, width = 0; // 屏幕的高和宽 string contents; // 保存内容 }; int main() { return 0; }
返回*this的成员函数
类类型
友员再探
标签:unsigned ring 类类型 contents std return size_type 定义 pos
原文地址:http://www.cnblogs.com/xkxf/p/6700751.html