2010-12-05 C++言語で連想配列風。 C言語 C++言語で連想配列風。 map型を使って楽する。 #include <stdio.h> #include <string> #include <map> #include <iostream> int main(){ using namespace std; std::map<std::string,std::string> data; data["a"]="AA"; data["b"]="BB"; data["d"]="CC"; data["e"]="EE"; cout << data["d"] <<"\n"; return 0; }