std::map<string,bool>
在 asp.net中最接近的东西是什么?
问问题
283 次
3 回答
4
字典。
Dictionary<string, bool>
于 2013-02-07T19:49:56.010 回答
2
我想你可能会使用:
System.Collections.Generic.Dictionary<string,bool>
于 2013-02-07T19:50:02.513 回答
0
该Dictionary
集合是一个哈希表。System.Collections.Generic.Dictionary<string,bool>
是最相似的数据结构std::map<string,bool>
。
于 2013-02-07T20:00:03.870 回答