- 论坛徽章:
- 1
|
原帖由 converse 于 2005-11-24 23:49 发表
可以在头文件中类体内初始化有序型的const静态常量,但是还是需要在文本文件中定义一下这个类,但是不能再初始化了:
- //c.h
- class test
- {
- static const int a = 1; //在类体内初始化
- };
- // c ...
- const int test::a; // 必须的成员定义
复制代码
不知道到底是不是必需的,如:
- #include <iostream>
- using namespace std;
- class T{
- public:
- static const int count = 100;
- };
- int main()
- {
- cout << T::count << endl;
- }
复制代码[test:/home/test/src/temp]g++ test.cpp
[test:/home/test/src/temp]./a.out
100 - cout << T::count << endl;//改成
- cout << static<void *>(&T::count) << endl;
复制代码/home/test/src/temp/test.cpp:12: undefined reference to `T::count' 所以好像只在需要它真实存储的时候才需要它的具体的定义.不过书上都说要定义的.包括TCPL吧.
[ 本帖最后由 THEBEST 于 2005-11-25 09:06 编辑 ] |
|