首页 > 代码库 > 【c++ primer, 5e】类的其他特性
【c++ primer, 5e】类的其他特性
类成员再探
定义一个类型成员:
#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的成员函数
类类型
友员再探
【c++ primer, 5e】类的其他特性
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。