473,402 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

map problem

Hello, I have a std::map<const char*, int> in a class and in the constructor
of the class (there is only one), I do the following initilization of the
map:
KeyMap::KeyMap()
{
keymap["F1"] = VK_F1;
keymap["F2"] = VK_F2;
keymap["F3"] = VK_F3;
keymap["F4"] = VK_F4;
keymap["F5"] = VK_F5;
keymap["F6"] = VK_F6;
keymap["F7"] = VK_F7;
keymap["F8"] = VK_F8;
keymap["F9"] = VK_F9;
keymap["F10"] = VK_F10;
keymap["F11"] = VK_F11;
keymap["F12"] = VK_F12;
keymap["Page Up"] = VK_PRIOR;
keymap["Page Down"] = VK_NEXT;
keymap["Insert"] = VK_INSERT;
keymap["Home"] = VK_HOME;
keymap["Delete"] = VK_DELETE;
keymap["End"] = VK_END;
keymap["Divide"] = VK_DIVIDE;
keymap["Multiply"] = VK_MULTIPLY;
keymap["Subtract"] = VK_SUBTRACT;
keymap["Add"] = VK_ADD;
keymap["Decimal Point"] = VK_DECIMAL;
}

But when I call the following function (get_key_code) with the string F1, an
exception is thrown
because the key is not present in the map.

int KeyMap::get_key_code(const char* key)
{
if(keymap.count(key))
{
return keymap[key];
}

throw keymap_error("No such key exists in the map.");
}

Why? And how to remedy it?

// William Payne
Jul 19 '05 #1
4 3296

"William Payne" <mi**************@student.liu.se> wrote in message
news:bi**********@news.island.liu.se...
Hello, I have a std::map<const char*, int> in a class and in the constructor of the class (there is only one), I do the following initilization of the
map:
KeyMap::KeyMap()
{
keymap["F1"] = VK_F1;
keymap["F2"] = VK_F2;
keymap["F3"] = VK_F3;
keymap["F4"] = VK_F4;
keymap["F5"] = VK_F5;
keymap["F6"] = VK_F6;
keymap["F7"] = VK_F7;
keymap["F8"] = VK_F8;
keymap["F9"] = VK_F9;
keymap["F10"] = VK_F10;
keymap["F11"] = VK_F11;
keymap["F12"] = VK_F12;
keymap["Page Up"] = VK_PRIOR;
keymap["Page Down"] = VK_NEXT;
keymap["Insert"] = VK_INSERT;
keymap["Home"] = VK_HOME;
keymap["Delete"] = VK_DELETE;
keymap["End"] = VK_END;
keymap["Divide"] = VK_DIVIDE;
keymap["Multiply"] = VK_MULTIPLY;
keymap["Subtract"] = VK_SUBTRACT;
keymap["Add"] = VK_ADD;
keymap["Decimal Point"] = VK_DECIMAL;
}

But when I call the following function (get_key_code) with the string F1, an exception is thrown
because the key is not present in the map.

int KeyMap::get_key_code(const char* key)
{
if(keymap.count(key))
{
return keymap[key];
}

throw keymap_error("No such key exists in the map.");
}

Why? And how to remedy it?

Strangely I had this exact same problem this morning.

The problem is that your map is comparing pointers not strings. Either
change your map to

std::map<std::string, int>

or add a C string comparison object

struct cstring_less_than : std::binary_function<const char*, const char*,
bool)
{
bool operator()(const char* lhs, const char* rhs) const
{
return strcmp(lhs, rhs) < 0;
}
};

std::map<std::string, int, cstring_less_than>
// William Payne


john
Jul 19 '05 #2
"John Harrison" <jo*************@hotmail.com> wrote in message
news:bi************@ID-196037.news.uni-berlin.de...

"William Payne" <mi**************@student.liu.se> wrote in message
news:bi**********@news.island.liu.se...

[snip]
Strangely I had this exact same problem this morning.

The problem is that your map is comparing pointers not strings. Either
change your map to

std::map<std::string, int>

or add a C string comparison object

struct cstring_less_than : std::binary_function<const char*, const char*,
bool)
{
bool operator()(const char* lhs, const char* rhs) const
{
return strcmp(lhs, rhs) < 0;
}
};

std::map<std::string, int, cstring_less_than>
You mean std::map<const char*, int, cstring_less_than> ?
// William Payne


john


--
ES Kim
Jul 19 '05 #3

"John Harrison" <jo*************@hotmail.com> wrote in message
news:bi************@ID-196037.news.uni-berlin.de...

"William Payne" <mi**************@student.liu.se> wrote in message
news:bi**********@news.island.liu.se...
Hello, I have a std::map<const char*, int> in a class and in the constructor
of the class (there is only one), I do the following initilization of the map:
KeyMap::KeyMap()
{
keymap["F1"] = VK_F1;
keymap["F2"] = VK_F2;
keymap["F3"] = VK_F3;
keymap["F4"] = VK_F4;
keymap["F5"] = VK_F5;
keymap["F6"] = VK_F6;
keymap["F7"] = VK_F7;
keymap["F8"] = VK_F8;
keymap["F9"] = VK_F9;
keymap["F10"] = VK_F10;
keymap["F11"] = VK_F11;
keymap["F12"] = VK_F12;
keymap["Page Up"] = VK_PRIOR;
keymap["Page Down"] = VK_NEXT;
keymap["Insert"] = VK_INSERT;
keymap["Home"] = VK_HOME;
keymap["Delete"] = VK_DELETE;
keymap["End"] = VK_END;
keymap["Divide"] = VK_DIVIDE;
keymap["Multiply"] = VK_MULTIPLY;
keymap["Subtract"] = VK_SUBTRACT;
keymap["Add"] = VK_ADD;
keymap["Decimal Point"] = VK_DECIMAL;
}

But when I call the following function (get_key_code) with the string

F1, an
exception is thrown
because the key is not present in the map.

int KeyMap::get_key_code(const char* key)
{
if(keymap.count(key))
{
return keymap[key];
}

throw keymap_error("No such key exists in the map.");
}

Why? And how to remedy it?


Strangely I had this exact same problem this morning.

The problem is that your map is comparing pointers not strings. Either
change your map to

std::map<std::string, int>

or add a C string comparison object

struct cstring_less_than : std::binary_function<const char*, const char*,
bool)
{
bool operator()(const char* lhs, const char* rhs) const
{
return strcmp(lhs, rhs) < 0;
}
};

std::map<std::string, int, cstring_less_than>
// William Payne


john


Thanks, I decided to use std::string instead as suggested.

// William Payne
Jul 19 '05 #4

"ES Kim" <es***@svd.co.kr> wrote in message
news:bi**********@news1.kornet.net...
"John Harrison" <jo*************@hotmail.com> wrote in message
news:bi************@ID-196037.news.uni-berlin.de...

"William Payne" <mi**************@student.liu.se> wrote in message
news:bi**********@news.island.liu.se...


[snip]
Strangely I had this exact same problem this morning.

The problem is that your map is comparing pointers not strings. Either
change your map to

std::map<std::string, int>

or add a C string comparison object

struct cstring_less_than : std::binary_function<const char*, const char*, bool)
{
bool operator()(const char* lhs, const char* rhs) const
{
return strcmp(lhs, rhs) < 0;
}
};

std::map<std::string, int, cstring_less_than>


You mean std::map<const char*, int, cstring_less_than> ?


Yes I did. I also meant

struct cstring_less_than : std::binary_function<const char*, const char*,
bool>

not

struct cstring_less_than : std::binary_function<const char*, const char*,
bool)

john
Jul 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
117
by: Peter Olcott | last post by:
www.halting-problem.com
18
by: Ian Stanley | last post by:
Hi, Continuing my strcat segmentation fault posting- I have a problem which occurs when appending two sting literals using strcat. I have tried to fix it by writing my own function that does the...
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
0
by: =?Utf-8?B?am8uZWw=?= | last post by:
Hello All, I am developing an Input Methop (IM) for PocketPC / Windows Mobile (PPC/WM). On some devices the IM will not start. The IM appears in the IM-List but when it is selected from the...
1
by: sherifbk | last post by:
Problem description ============== - I have 4 clients and 1 server (SQL server) - 3 clients are Monitoring console 1 client is operation console - Monitoring console collects some data from...
9
by: AceKnocks | last post by:
I am working on a framework design problem in which I have to design a C++ based framework capable of solving three puzzles for now but actually it should work with a general puzzle of any kind and I...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.