1. 程式人生 > >c++中列舉常量與巨集常量的一點區別

c++中列舉常量與巨集常量的一點區別

#include <iostream>
using namespace std;

class A
{
 enum { APPLE = 111 }; 
 #define PEAR 333
public:
 A()
 {
  cout << "APPLE: " << APPLE << endl; // 私有列舉常量,只有在類內部可以訪問。
 }
};

int main()
{
 A a;
 //cout << "APPLE: " << APPLE << endl; // 編譯出錯,超出了訪問範圍
 cout << "PEAR: " << PEAR << endl; // 正常執行,巨集替換,沒有範圍限制。
 return 0;
}