C++ const修饰类成员的说明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ const修饰类成员的说明相关的知识,希望对你有一定的参考价值。
#include <iostream>#include <string.h>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
/*
- A1 const 修饰一个类中成员变量,则此变量必要用初始化列表来进行初始化。
- A2 const 修饰一个类中成员函数,则表示此成员函数不会修改类中所有成员变量。
- A3 const 修饰一个函数入参的引用时,表示此引用的内容不得在此函数中发生变化。
- A3.1 const 修饰一个函数的“引用入参”时,那么这个函数只可以使用入参的?const 的成员函数
-
*/
class Student{string m_name;
const int m_id; //A1
int m_score;
public:
int show_info_no_const(void)
{
cout <<"no const function: name "<< m_name << ", id " << m_id<<endl;
return 0;
}
int show_info(void) const
{
cout <<"name "<< m_name << ", id " << m_id<<endl;
// m_score=90; //A2 此处会有编译错误,原因就是show_info 被const来修饰了。
return 0;
}
void set_name(char new_name);
~Student();
Student():m_id(999){};
Student(const char h);
Student(const Student &obj);
};
Student::Student(const Student &obj):m_id(888)//A1
{
cout <<"call copy constructor "<<endl;
m_name = obj.m_name;
}
#if 1
Student::Student(const char* h):m_id(777)
{
m_name=h;
}
#endif
#if 1
Student::~Student()
{
}
void Student::set_name(char* new_name)
{
m_name=new_name;
//m_id=9;//A1 m_id是不可以再被修改的。
}
#endif
//测试A3.1
void show_student(const Student& Stu) //A3
{
Stu.show_info();
// Stu.show_info_no_const(); //A3.1 此函数实际上没有改变Stu的值 ,但是由于它没有使用const进行修饰,所以发生了const属性丢失的情况。
}
int main()
{
Student A1;
A1.set_name("A1");
A1.show_info();
Student A2("abl");
A2.show_info();
Student A3(A2);
A3.show_info();
return 0;
}
以上是关于C++ const修饰类成员的说明的主要内容,如果未能解决你的问题,请参考以下文章