中途需要產生const變量的一些方法

需求:

int c = 0;
// the value of c is initialized here
switch(someVar) {
   
case foo: c = 3; break;
   
case bar: c = 4; break;
   
default : c = 42; // what else?
}
// now c is constant
ASSUME_CONST_FROM_NOW
(c) // 中途產生const變量

方法1:
c++0x
int const c = []() -> int { 
   
int r;
   
switch(42) {
   
case 3:
        r
= 1; break;
   
case 4:
        r
= 2; break;
   
default:
        r
= 23;
   
};
   
return r;
}();

方法2:
int getInitCValue(int const& someVar)
{
   
// the value of c is initialized here
   
switch(someVar)
   
{
       
case foo: return 3;
       
case bar: return 4;
       
default : return 42; // what else?
   
}
}

int const c = getInitCValue(someVar);

方法3:
struct ConstValues
{
   
ConstValues()
   
{
         
switch(....)
         
// Initialize C/D
   
}
   
int const& getC() const {return c;}
   
int const& getD() const {return d;}
   
private:
       
int c;
       
int d;
};


發佈了109 篇原創文章 · 獲贊 7 · 訪問量 40萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章