博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ const修饰类成员的说明
阅读量:6847 次
发布时间:2019-06-26

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

#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;

}

转载于:https://blog.51cto.com/yaxinsn/2394690

你可能感兴趣的文章
我的友情链接
查看>>
2013年微软MVP巡讲西安站活动小记
查看>>
Leetcode 20. Valid Parentheses
查看>>
VM 监控信息布局
查看>>
nat转发
查看>>
域后续之golden ticket
查看>>
NSOutlineView使用笔记(二)
查看>>
centos7下如何安装mysql 亲测
查看>>
SSH防止暴力破解 shell script
查看>>
真是讨人厌
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
如何编辑UG中打开文件的历史记录信息(history.pax)?
查看>>
LeetCode 5回文数
查看>>
mysql的安装与配置
查看>>
Linux运维系统工程师系列---23
查看>>
源码安装http的-2.4.4
查看>>
One_install postifx is shell
查看>>
Java await wait sleep yield
查看>>