Re: Map problem
tech wrote:
Hi, I want to create a map of named events from a const array.
eg std::map<std::string, HANDLE> this needs to be intialised so that
initially it will be contain the names of the all the events with a
NULL handle then
i can do the following
std::map<std::string, HANDLE> Events;
std::map<std::string, HANDLE>::iterator it;
const std::string[] { "EventName1", "EventName2", "EventName3"};
const std::string eventNames[] = { "EventName1", "EventName2", "EventName3"};
it = Events.begin();
while (it != Events.end())
{
Events[it->first] = CreateEvent(NULL,FALSE,FALSE, it->first.c_str())
Since 'it' already refers to the pair of std::string,HANDLE you want to
access in the map, just use:
it->second = ...
instead of
Events[it->first] = ...
++it;
}
But because you want to fill the map with the array, you would want to loop
over the array and not over the map content, as Jim Langston wrote.
So i f i ever need a new event all i need to do is add it to the array
and the event will be created
managed, destroyed just using the map.
Wrong. The map doesn't know how to destroy the events. You will have to
loop over the map elements and call the right function to destroy the
events as documented with the CreateEvent function.
The map will only destroy, and release memory for, the HANDLE.
--
Thomas
http://www.netmeister.org/news/learn2quote.html
There are no bugs, and they have been fixed!