摘要: 1.const修饰成员函数 ●用const修饰的成员函数时,const修饰this指针指向的内存区域,成员函数体内不可以修改本类中的任何普通成员变量, ● 当成员变量类型符前用mutable修饰时例外。 //const修饰成员函数 class Person{ public: Person(){ th 阅读全文
posted @ 2022-09-26 19:01 CodeMagicianT 阅读(101) 评论(0) 推荐(0) 编辑