Home >Backend Development >C++ >How Can I Correctly Use `char*` Keys in a C `std::map`?

How Can I Correctly Use `char*` Keys in a C `std::map`?

Susan Sarandon
Susan SarandonOriginal
2024-12-06 20:36:12787browse

How Can I Correctly Use `char*` Keys in a C   `std::map`?

Understanding std::map with char* Keys

In C programming, using char as a key in a std::map can lead to unexpected issues. This article delves into the challenges associated with using char keys and explores a solution to overcome these difficulties.

The code sample provided in the question faces issues because the std::map compares the raw pointers rather than the null-terminated strings they reference. To resolve this issue, it is necessary to incorporate a comparison functor into the map.

Consider the following code snippet as a solution:

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;

By defining and utilizing this comparison functor, the std::map is furnished with the ability to compare the null-terminated strings pointed to by the char* keys, ensuring proper functioning and resolving the issue encountered in the provided code.

The above is the detailed content of How Can I Correctly Use `char*` Keys in a C `std::map`?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn