c++ 盡量不要使用#define 而是用const、enum、inline替換。_C 語言

來源:互聯網
上載者:User
例如:這裡程式檔案開頭有如下#define語句

複製代碼 代碼如下:

#define N 10
#define PI 3.14
#define MAX 10000
#define Heigth 6.65
...
...


假設這裡程式運行出錯誤,而且就是在我們使用這些常量有錯誤,此時編輯器應該會拋出錯誤資訊。如果該資訊提示6.65這裡有錯誤,Ok如果你運氣好你正好記得或者程式簡單一眼能找到6.65表示什麼,如果程式很複雜,而且報出6.65的檔案是引用該檔案,不記得,那麼你會困惑這是什嗎?或許會花大量時間去追蹤6.65是什嗎?進而定位問題。
為什麼錯誤資訊是6.65呢?而不是Heith呢?因為在先行編譯階段,已經用5.65來代替Heigth,Height沒有進入記號表(system table)內。解決之道是可以使用下面語句進行替換
const double treeHeight=5.68;
   作為一個語言常量,treeHeight肯定會被編譯器獲知,並且進入記號表內。報出的錯誤不在是數字而是變數名稱,這樣有利於定位問題。
這裡特別說明一下常量替換#define有兩種特殊情況。
   第一個是定義常量指標。這裡要將指標定義為常量指標,同時該指標也是指向一個常量,所以是下面的形式:
const char * const HZ="Hang Zhou";
在C++中最好使用string對象來替換掉char*形式:
const std::string HZ ("Hang Zhou");
第二個值得注意的就是class專屬常量。首先將作用於限制到類內,必須將其聲明為其成員。其次確保此常量至多隻有一份實體,必須讓它稱為static成員。例如:
複製代碼 代碼如下:

class People
{
private:
static const int Number=10;
int phoneNumbers[Number];
......
}

這看到的是聲明式,而非定義式。通常C++要求你對使用的任何東西提供一個定義式。 或者使用enum,對於形式函數的宏,儘可能用inline或者template來代替。但是如果它是個class專屬常量又是static且為整數類型(int,char,bool)則需特殊處理。只要不娶它們地址,則只用聲明而不用提供定義式子。但是如果取class專屬常量地址,縱使不取其地址編譯器就要你提供定義式子。
static const int People::Number
這裡定義不設初始值,是因為聲明的時候已經擷取了初值。

這裡可以使用enum完成類似的功能
複製代碼 代碼如下:

class People
{
private:
enum { Number = 10 };
int phoneNumbers[Number];
....
}

enum比較像#define而不像const。因為取const的地址是合法的,取一個enum的地址就不合法,取#define地址通常就不合法。所以可以通過enum來實現不讓他人取得某個常量的地址。

下面介紹一道筆試題目
複製代碼 代碼如下:

#define PRODUCT(a,b) a*b
....
int a=5,b=3,c;
c=PRODUCT(a+3,b+4);

那麼c的值為多少?c=5+3*3+4=18而不是程式員預想的56,如果想達到預期的結果必須這樣寫

#define PRODUCT(a,b) ((a)*(b))
或許這樣你還會堅持會寫宏函數,因為你想說只用寫一個宏函數就能完成int,flaot,double等類型的乘積運算。那麼在看看下面例子

#define MAX(a,b) ((a)>(b)?(a):(b))

int a=5,b=3

MAX(++a,b); //a被加了兩次

MAX(++a,b+4); //a被加了一次
a被加的結果可能不是預期的,完全可以用template inline函數達到宏的預期效果,並且效率與宏差不多。
複製代碼 代碼如下:

template<typename T>
inline void Max(const T& a,const T& b)
{
f(a>b?a:b);
}

inline函數是一種編譯機制,有點從代碼上是看不出來的,但是從程式的執行效率上有差別,通常編譯器對函數調用的處理是一種類似中斷的方式,即當執行到函數調用語句時,會將當前所有資訊儲存到寄存器中,在去執行函數的代碼,執行完後取回寄存器值,恢複到調用函數開始的狀態,繼續執行代碼。聲明為 inline 函數後,編譯器不把函數編譯成調用函數而是將代碼拷貝到被調用的地方。所以效率上要比普通函數高一些,少了存寄存器與取寄存器資訊的步驟。
另外需要注意的是inline函數最好寫到.h檔案中去,或者直接寫到類中去。
const允許程式員指定一個語義約束,即不能被改動,編譯器會強制實施這項約束。它表示被它修飾的值是不變的。const可以在classes外部修飾global或namespace範圍中的常量,或修飾檔案、函數或者static對象以及指標。在const應用在指標中要注意關鍵字const出現在“*”的什麼地方,如果在左邊表示被指向的值是常量,如果在右邊表示指標自身是常量。出現兩邊表示兩者的功能的並集。這裡特別說以下幾點:
(1)迭代器中的cosnt
const std::vector<int>::iterator iter=vec.begin(); //相當於iter不能改變

std::vector<int>::const_iterator citer=vec.begin(); //iter所指向的內容無法改變
(2)將函數傳回值聲明為常量,不僅可以降低因程式員錯誤造成的不可預料的情況,並且不用放棄安全性和高效性。例如:

const operater *(const &lhs,const &rhs);
if((a * b = c);//本意是if(a*b==c)因程式員馬虎而寫成這樣
如果a和b都是內建類型,此代碼就不合理,但是是我們自訂類型,就可能行得通,如果聲明傳回值是cosnt,就可以預防這麼做了。

(3)const成員函數,它是為了確認成員函數可作用於const對象。而且兩個成員函數如果只是常量性不同,是可以重載的。成員函數後面跟const,表示該函數不能更改類的成員變數(下面有代碼驗證,如果嘗試對其成員賦值,編譯器會爆出錯誤)。原理就是編譯器將其認為是唯讀變數。並且大多數const對象用於引用傳遞或者指標傳遞。
複製代碼 代碼如下:

#include <iostream>
#include <string>

class People
{
public:
People():m_sName(""),m_iAge(0){}
People(std::string name,int age):m_sName(name),m_iAge(age){}
void set(int age)
{
this->m_iAge=age;
}

void set2(int age) const
{
this->m_iAge=age;
}

int get()
{
return this->m_iAge;
}
private:
std::string m_sName;
int m_iAge;
};

int main(int argc,char **argv)
{
People* p=new People("sky",8);
p->set(10);
std::cout<<p->get()<<std::endl;
p->set2(12);
std::cout<<p->get()<<std::endl;
delete p;
return 0;
}


編譯該檔案會報以下錯誤資訊
const_test.cpp: In member function `void People::set2(int) const':
const_test.cpp:16: error: assignment of data-member `People::m_iAge' in read-only structure
const_test.cpp:36:2: warning: no newline at end of file
cosnt重載(注意:僅當形參是引用或者指標時候,形參是否為const才會有影響)。可以試一試我們將下面代碼的&去掉,傳入const_int其實調用的是void set(int age)函數,說明形參的const是沒有起作用的。下面是驗證代碼
複製代碼 代碼如下:

#include <iostream>
#include <string>
class People
{
public:
People():m_sName(""),m_iAge(0){}
People(std::string name,int age):m_sName(name),m_iAge(age){}
void set(const int& age) const
{
std::cout<<"this is const"<<std::endl;
}

void test(int& age)
{
std::cout<<"this is non-const"<<std::endl;
}

void test(short age)
{
std::cout<<"this is non-const"<<std::endl;
}

int get()
{
return this->m_iAge;
}
private:
std::string m_sName;
int m_iAge;
};

int main(int argc,char **argv)
{
People* p=new People("sky",8);
const int const_int=12;
p->test(const_int);
std::cout<<p->get()<<std::endl;
delete p;
}

(4)關於重載函數代碼重複的問題。由經驗可以得出我們通過const重載的函數往往有大量的代碼是重複,甚至是一樣的。如果大部分重複代碼,我們可以將這些重複的代碼寫成一個函數,在由它們分別調用。如果是一樣的,如下代碼,我們就可以在non-const函數中調用const函數,來解決代碼重複。
複製代碼 代碼如下:

class People
{
public:
People():m_sName(""),m_iAge(0){}
People(std::string name,int age):m_sName(name),m_iAge(age){}
void eat(const People & Person) const
{
std::cout<<"this person info is:{age ="<<Person.m_iAge()<<",name ="<<Person.m_sName()<<std::endl;
std::cout<<"eating"<<std::endl;
std::cout<<"end"<<std::endl;
}

void eat ( People & Person)
{
std::cout<<"this person info is:{age ="<<Person.m_iAge()<<",name ="<<Person.m_sName()<<std::endl;
std::cout<<"eating"<<std::endl;
std::cout<<"end"<<std::endl;
}
private:
std::string m_sName;
int m_iAge;
};

然後在non-const eat函數中首先將*this類型由People&顯示的轉化為const People&讓其調用const函數,即函數重載
複製代碼 代碼如下:

#include <iostream>
#include <string>
class People
{
public:
People():m_sName(""),m_iAge(0){}
People(std::string name,int age):m_sName(name),m_iAge(age){}
void eat(const People & Person) const
{
std::cout<<"this person info is:{age ="<<Person.m_iAge<<",name ="<<Person.m_sName<<"}"<<std::endl;
std::cout<<"eating"<<std::endl;
std::cout<<"end"<<std::endl;
}

void eat(People & Person)
{
static_cast<const People&>(*this).eat(Person);
}
private:
std::string m_sName;
int m_iAge;
};

int main(int argc,char **argv)
{
People Person("sky",8);
Person.eat(Person);
}

啟動並執行結果為

this person info is:{age =8,name =sky
eating
end
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.