1. 程式人生 > 程式設計 >C++中const的特性的使用

C++中const的特性的使用

目錄(作用):

  1:修飾變數,說明該變數不可以被改變;
  2:修飾指標,分為只想常量的指標和自身是常量的指標
  3:修飾引用,指向常量的引用,用於修飾形參,即避免了拷貝,有避免了函式對值的修改; 
  4:修改成員函式:說明該成員函式內不能修改成員變數。
  5:指標與引用

正文:

以下是對各種情況的示例:

//注:1:const修飾的引用cj的值且引用的物件無法修改無法修改,但是引用的i是可修改的
#include <iostream>

using namespace std;

int main() {
  int i = 1;
  const int &cj = i;
  
  cout << "cj : " <<cj<< endl;(√)
  
  
  i=2;
  cout << "cj : " <<cj<< endl;(√)
  
  cj=3;
  cout << "cj : " <<cj<< endl;(×)
  
  int a=9;
  cj=a; (×)
  
  return 0;
}



錯誤提示:
/code/main.cpp: In function ‘int main()':
/code/main.cpp:15:4: error: assignment of read-only reference ‘cj'
cj=3;
^
/code/main.cpp:19:4: error: assignment of read-only reference ‘cj'
cj=a;
^
sandbox> exited with status 0
//注:常量引用,本身也要是常量才行:

#include <iostream>

using namespace std;

int main() {
  const int i = 4;
 
  const int &ck = i; //正確,常量物件繫結到 const引用
   cout<< "ck="<<ck<<endl;
  
  const int b = 5;
 
  int &r = b;  //錯誤,
  
  return 0;
}



/code/main.cpp: In function ‘int main()':
/code/main.cpp:13:14: error: invalid initialization of reference of type ‘int&' from expression of type ‘const int'
  int &r = b;  //錯誤,
       ^
sandbox> exited with status 0
//注:const 的隱式轉換:

#include <iostream>

using namespace std;

int main() {
  double b = 2.14;
  const int &a = b;
  // 會進行如下轉換:
//   int temp = b;
//   const int &a=temp;
  // 所以,給b進行賦值,a可能
  cout<<"a="<<a<<endl;
  return 0;
}

執行結果:
a=2
sandbox> exited with status 0
//注:修飾成員函式_1:

class Date
{
  private:
  int m_year;
  int m_month;
  int m_day;
  public:
  int GetDay(void) const
  {
    m_day=7;
    return m_day;//修飾的情況下,不能對成員變數進行修改;
  }
};

// void GetDay(void) const
// {
//   return m_day;

// }

int main() {
  double b = 2.14;
  const int &a = b;
  // 會進行如下轉換:
  //   int temp = b;
  //   const int &a=temp;
  // 所以,a可能
  cout<<"a="<<a<<endl;
  return 0;
}


錯誤提示:
/code/main.cpp: In member function ‘int Date::GetDay() const':
/code/main.cpp:16:8: error: assignment of member ‘Date::m_day' in read-only object
 m_day=7;
    ^
sandbox> exited with status 0
//注:修飾函式_2

#include <iostream>

  using namespace std;



class Date
{
  private:
  int m_year;
  int m_month;
   mutable int m_day;//通過被mutable修改的成員變數,就可以被修改了
  public:
  int GetDay(void) const
  {
    m_day=7;
    return m_day;
  }
};

// void GetDay(void) const
// {
//   return m_day;

// }

int main() {
  double b = 2.14;
  const int &a = b;
  // 會進行如下轉換:
  //   int temp = b;
  //   const int &a=temp;
  // 所以,a可能
  cout<<"a="<<a<<endl;
  return 0;
}


執行結果:
a=2
sandbox> exited with status 0
//注:const修飾的指標


#include <iostream>

  using namespace std;


int main() {
  const int* p = NULL;//這兩種修飾的是*p指向的值
  //int const* p = NULL;

  int a=9;
  p=&a;//修改了p指向的地址,任然沒有出錯
  cout<<"*p="<<*p<<endl<<"p="<<p<<endl;
  
  
  int c=10;
  int* const b = &c;//這兩種修飾的是p指向的地址
   c=45;
  *b=c;//修改了b指向的值,任然不會出錯
  cout<<"*b="<<*b<<endl<<"b="<<b<<endl;
  
  b=&a;//這裡有問題了,b指向的地址是不能修改的
  cout<<"*b="<<*b<<endl<<"b="<<b<<endl;
  return 0;
}

執行結果:
/code/main.cpp: In function ‘int main()':
/code/main.cpp:21:3: error: assignment of read-only variable ‘b'
 b=&a;
  ^
sandbox> exited with status 0
//注:const修飾的引用

#include <iostream>

  using namespace std;


int main() {
  int x = 3;
  const int& y = x;
  cout<<"y="<<y<<endl;
  x=9;
  cout<<"y="<<y<<endl;
  
  y=9;//const修飾的引用是不能夠在更改引用指向的物件的
  cout<<"y="<<y<<endl;
  return 0;
}


執行結果:
/code/main.cpp: In function ‘int main()':
/code/main.cpp:13:3: error: assignment of read-only reference ‘y'
 y=9;
  ^
sandbox> exited with status 0

到此這篇關於C++中const的特性的使用的文章就介紹到這了,更多相關C++ const的特性內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!