vector类型变量在main之前初始化

C++初始化普通成员的特点来调用静态初始化函数。当然,这需要定义一个额外的静态成员变量来辅助一下。
[cpp]  view plain  copy
 print ?
  1. #include <iostream>  
  2. #include <string>  
  3. #include <vector>  
  4.   
  5. class Test1  
  6. {  
  7. public:  
  8.     Test1()  
  9.     {  
  10.         std::cout << "Test1 constructor..." << std::endl;  
  11.     };  
  12.     virtual ~Test1()  
  13.     {  
  14.         std::cout << "Test1 deconstructor..." << std::endl;  
  15.     };  
  16. };  
  17.   
  18. class Test2   
  19. {  
  20. public:  
  21.     static std::vector<std::string> stringList;  
  22. private:  
  23.     static bool __init;  
  24.     static bool init()   
  25.     {  
  26.         stringList.push_back("string1...");  
  27.         stringList.push_back("string2...");  
  28.         stringList.push_back("string3...");  
  29.   
  30.         return true;  
  31.     }  
  32. };  
  33.   
  34. Test1 test1;  
  35.   
  36. std::vector<std::string> Test2::stringList;  
  37. bool Test2::__init = Test2::init();  
  38.   
  39. int main()  
  40. {  
  41.     std::cout << Test2::stringList.size() << std::endl;  
  42.     return EXIT_SUCCESS;  
  43. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值