討論串[問題] c++ class 內部 array size 宣告
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
#ifndef A_H. #define A_H. #define SIZE 4. class A{. int a[SIZE];. };. #endif. 如前面所寫的. 因為我在使用上呼叫不同標頭檔. 會遇到SIZE重複定義的問題. 試著使用const int在class內. 卻無法compile
(還有13個字)
內容預覽:
#ifndef A_H. #define A_H. class A. {. private:. static const int SIZE = 4;. int a[SIZE];. .... public:. .... };. #endif. or. #ifndef A_H. #define A_H.
(還有198個字)
首頁
上一頁
1
下一頁
尾頁