首页 > 编程语言 > 详细

c++静态成员初始化

时间:2019-07-15 21:05:59      阅读:80      评论:0      收藏:0      [点我收藏+]
class A {
private:

static int a; //声明但未定义
static std::map<std::string,int>fileMap;

};

int A::a = 3; //定义了
std::map<std::string, int> YuvMap::fileMap = std::map<std::string, int>();

 

#include <iostream>
#include <map>
using namespace std;
 
class A
{
public:
    static map<int,int> m;
};
 
map<int,int> A::m;
 
int main()
{
    A::m.insert(make_pair(1,2));
 
    return 0;
}

 

c++静态成员初始化

原文:https://www.cnblogs.com/jiulonghudefeizhai/p/11191413.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!