How would I access elements from the following map:
map<int, string[4]> * my_map;
I used to do it through the at() operator
string * val_ptr = my_map->at(key);
Recently, I have discovered that this is a non standard feature of my compiler and the correct way of doing it is through operator[]. Unfortunately, the compiler keeps trying to convert my key to string [4]:
string * val_ptr = my_map->operator[](key);
error: conversion from ‘int’ to non-scalar type ‘std::string [4]’ requested
I have looked online, but there don't seem to be any examples with a map of string arrays. Am I doing something invalid? Should I be using a vector instead, and if so, would it be slower to create and access?
map<int, string[4]>even legal?string[4]or any other array is not assignable. – UncleBens Dec 11 '11 at 14:52