博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++官方文档-常量成员函数
阅读量:6498 次
发布时间:2019-06-24

本文共 812 字,大约阅读时间需要 2 分钟。

#include 
using namespace std;class MyClass{ public: int x; static int n; const int y; MyClass(int val) : x(val), y(20) { }// int get()// {// return x;// } //int get() const {return x;} // const member function //const int& get() {return x;} // member function returning a const& //const int& get() const {return x;} // const member function returning a const& int get() { return x; } int gett() const { n++; return y; } int getY() { cout<<"非成员函数常量getY"<

 

posted on
2018-02-14 23:04 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/shuiyonglewodezzzzz/p/8449052.html

你可能感兴趣的文章
录音声音小
查看>>
Ubuntu 12.04 安装 Chrome浏览器
查看>>
java 反射
查看>>
ORACLE物化视图(物理视图)
查看>>
android 读取json数据(遍历JSONObject和JSONArray)(转)
查看>>
UIScrollView中的手势
查看>>
递归和迭代的差别
查看>>
基于jquery的可拖动div
查看>>
可以简易设置文字内边距的EdgeInsetsLabel
查看>>
[詹兴致矩阵论习题参考解答]习题1.3
查看>>
Android Fragment的使用
查看>>
沙朗javascript总结一下(一)---基础知识
查看>>
js深入研究之函数内的函数
查看>>
LeetCode:4_Median of Two Sorted Arrays | 求两个排序数组的中位数 | Hard
查看>>
python之commands模块
查看>>
android应用开发--------------看RadioGroup源代码,写相似单选选项卡的集成控件(如底部导航,tab等等)...
查看>>
LeetCode - Binary Tree Level Order Traversal
查看>>
FTP协议完全详解
查看>>
【C语言天天练(十五)】字符串输入函数fgets、gets和scanf
查看>>
【环境配置】配置sdk
查看>>