const的函数不能对其数据成员进行修改操作。
const的对象,不能引用非const的成员函数。
// test1107.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeusing namespace std;class aa{ int num;public: aa(){ int b =10; num = b; }; void out1(){ cout< <
本文共 326 字,大约阅读时间需要 1 分钟。
const的函数不能对其数据成员进行修改操作。
const的对象,不能引用非const的成员函数。
// test1107.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeusing namespace std;class aa{ int num;public: aa(){ int b =10; num = b; }; void out1(){ cout< <
转载于:https://www.cnblogs.com/raichen/p/5551562.html