中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中const修飾類成員怎么用

發布時間:2021-11-24 13:38:18 來源:億速云 閱讀:138 作者:小新 欄目:編程語言

小編給大家分享一下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修飾類成員怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定远县| 休宁县| 东宁县| 台江县| 乌鲁木齐市| 高青县| 洞头县| 南华县| 扶余县| 恩施市| 开原市| 富源县| 新河县| 瑞安市| 襄樊市| 平罗县| 东乡县| 澄迈县| 太白县| 通榆县| 象山县| 万安县| 广州市| 资溪县| 孟州市| 高青县| 天台县| 云霄县| 磴口县| 贵南县| 子洲县| 卢氏县| 时尚| 屯门区| 台北县| 永登县| 霍城县| 炉霍县| 文成县| 琼海市| 延寿县|