使用char* 鍵理解std::map
在C 程式設計中,使用char 作為std:: 中的鍵地圖可能會導致意想不到的問題。本文深入研究了與使用 char 鍵相關的挑戰,並探索了克服這些困難的解決方案。
問題中提供的程式碼範例面臨問題,因為 std::map 比較原始指標而不是它們引用的以 null 結尾的字串。要解決此問題,需要將比較函子合併到映射中。
考慮以下程式碼片段作為解決方案:
struct cmp_str { bool operator()(char const *a, char const *b) const { return std::strcmp(a, b) < 0; } }; map<char *, int, cmp_str> g_PlayerNames;
透過定義和利用此比較函子, std::map 能夠比較char* 鍵指向的以null 結尾的字串,確保正常運作並解決所提供程式碼中遇到的問題。
以上是如何在 C `std::map` 中正確使用 `char*` 鍵?的詳細內容。更多資訊請關注PHP中文網其他相關文章!