由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - std::map
相关主题
typedef basic_string string;这个类的default constructor怎么写
C 中的typedef 一问what is this ^ operator used in the function call
又问几个c语言编程的题目string operator +
c++ iterator 弱问const in c++
一个C++ operator new的重载问题很困惑的javascript string compare问题
make 时候遇到 undefined reference 怎么办?请提供关于Matlab绘图中修改字体、线条的代码
为啥gcc找不到类的构造函数?Pattern matching
一个c++小问题[合集] c++的题
相关话题的讨论汇总
话题: fontsize话题: data话题: string话题: operator话题: maptype
进入Programming版参与讨论
1 (共1页)
h**o
发帖数: 548
1
知道可以这样:
typedef map mapType;
mapType data;
data["FontSize"] = 10;
怎样实现这个那?
data["type1"]["FontSize"] = 10;
data["type2"]["FontSize"] = 4;
k**f
发帖数: 372
2

map

【在 h**o 的大作中提到】
: 知道可以这样:
: typedef map mapType;
: mapType data;
: data["FontSize"] = 10;
: 怎样实现这个那?
: data["type1"]["FontSize"] = 10;
: data["type2"]["FontSize"] = 4;

h**o
发帖数: 548
3
Thanks.
or
typedef pair key;
map;

【在 k**f 的大作中提到】
:
: map

k**f
发帖数: 372
4

This does not support the usage you asked in the first post:
data["type1"]["FontSize"] = 10;
you may have to use
data[make_pair("type1", "FontSize")] = 10;
On top of this, you have to define operator "<" for pair.

【在 h**o 的大作中提到】
: Thanks.
: or
: typedef pair key;
: map;

t****t
发帖数: 6806
5
there is default operator "<" for pair given T::operator< and U::
operator<

【在 k**f 的大作中提到】
:
: This does not support the usage you asked in the first post:
: data["type1"]["FontSize"] = 10;
: you may have to use
: data[make_pair("type1", "FontSize")] = 10;
: On top of this, you have to define operator "<" for pair.

k**f
发帖数: 372
6

Good to know this. Thanks.

【在 t****t 的大作中提到】
: there is default operator "<" for pair given T::operator< and U::
: operator<

1 (共1页)
进入Programming版参与讨论
相关主题
[合集] c++的题一个C++ operator new的重载问题
数据类型判断make 时候遇到 undefined reference 怎么办?
java string stream为啥gcc找不到类的构造函数?
计算围棋棋盘合法图案的源代码一个c++小问题
typedef basic_string string;这个类的default constructor怎么写
C 中的typedef 一问what is this ^ operator used in the function call
又问几个c语言编程的题目string operator +
c++ iterator 弱问const in c++
相关话题的讨论汇总
话题: fontsize话题: data话题: string话题: operator话题: maptype