码迷,mamicode.com
首页 > 编程语言 > 详细

【c++ primer, 5e】类的其他特性

时间:2017-04-12 19:49:50      阅读:171      评论:0      收藏:0      [点我收藏+]

标签: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的成员函数

类类型

友员再探

 

【c++ primer, 5e】类的其他特性

标签:unsigned   ring   类类型   contents   std   return   size_type   定义   pos   

原文地址:http://www.cnblogs.com/xkxf/p/6700751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!