贵港市网站建设_网站建设公司_Redis_seo优化
2026/1/5 20:16:14 网站建设 项目流程

1.const对象只能调用const函数

//Human.h
class Human {
public:
......
void description() const; //注意,const的位置-------------------------》重要
......
};

//Human.cpp
void Human::description ()const {
cout << "age:" << age
<< " name:" << name
<< " salary:" << salary
<< " addr:" << addr
<< " bloodType:" << bloodType << endl;
}

//main.cpp
int main(void) {
const Human h1;-------------------------》重要
h1.description();

system("pause");
return 0;

}

需要专业的网站建设服务?

联系我们获取免费的网站建设咨询和方案报价,让我们帮助您实现业务目标

立即咨询