2014-02-11 39 views
0

我有以下類,我需要有兩個常量聲明。模板類聲明 - 不是一個常量表達式

​​

而且 這裏是其使用的測試代碼

void testBufferPool(const int pageDivSize, const int bufferNum){ 

    // other code and declaration 

    BufferPool <pageDivSize, bufferNum> bufferPool(catalog, devNum, hostCapacityVec, devCapacityVec); 


} 

我收到以下錯誤:

error: ‘pageDivSize’ is not a constant expression 
BufferPoolTest.cpp:26:39: note: in template argument for type ‘int’ 
BufferPoolTest.cpp:26:39: error: ‘bufferNum’ is not a constant expression 
BufferPoolTest.cpp:26:39: note: in template argument for type ‘int’ 
BufferPoolTest.cpp:26:51: error: invalid type in declaration before ‘(’ token 
BufferPoolTest.cpp:26:100: error: expression list treated as compound expression in initializer [-fpermissive] 
BufferPoolTest.cpp:26:100: error: cannot convert ‘std::vector<long unsigned int>’ to ‘int’ in initialization 

回答