在asp.net中与std::map<string,bool>
最接近的是什么?
答案 0 :(得分:4)
<强> Dictionary 强>
Dictionary<string, bool>
答案 1 :(得分:2)
我想你可能会用:
System.Collections.Generic.Dictionary<string,bool>
答案 2 :(得分:0)
Dictionary
集合是一个哈希表。 System.Collections.Generic.Dictionary<string,bool>
与std::map<string,bool>
的数据结构最相似。