求教一个关于STL-map的插入问题
RT,昨天晚上由于工作需要,构建了一个业务的数据结构,用map,下面是我的代码,代码很短,在插入的时候出现的问题,实在是找不出在哪里错了,在此求教//自定义的结构体
typedef struct
{
unsigned int nPower; //功率
unsigned int nECPower; //节能功率
}LINE_PROPERTY;
//数据结构map
map<wstring, LINE_PROPERTY> m_mapLineProperty;
//下面是我的测试代码,插入数据
LINE_PROPERTY stLineProperty;
unsigned int nPower = 100;
unsigned int nECPower = 200;
//结构体赋值
stLineProperty.nPower = nPower;
stLineProperty.nECPower = nECPower;
wstring strLineName = _T("mytest");
//就是在这句出错的,说是类型不匹配,实在是不知道为什么会出错,数据类型应该是没问题的才对
m_mapLineProperty.insert(map<wstring, LINE_PROPERTY>::value_type(strLineName, &stLineProperty));
//上面的插入,我用了好几种插入方法,大概是三种,都是一种错误,所以应该是我的数据类型哪里错了,所以在此请高手帮忙一下