std::map<string,bool>
asp.netで最も近いものは何ですか?
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 に答える