C++
- voluntas
- @ignis_fatuus
- ブン
- @Linda_pp
- 清楚なC++メイドBOT
- @tzik_tack
- 長谷川一輝
- wraith13
- @jj1bdx
- @cpp_akira
- 安藤敏彦
- @srz_zumix
- Siv3D
- takezoh
- まろ
- @okdshin
- @hnokx
- @ishidakei
- @take_cheeze
- TAKEI Yuya
- @mumumu
- I (@wx257osn2)
- Tommy6
- @tyottyoworks
- ___shanon
- わたやん
- @KorekaraSEDB
- @kariya_mitsuru
- @ciniml
- @beam2d
- @grafi_tt
- @nekketsuuu
- LouiS0616
- @volanja
- 大鎌広
- むてら
- ガチKGB
- 三重野賢人
x
12
1
2
3
int main(){
4
std::unordered_map<std::string, std::vector<int>> testmap;
5
int x = 0;
6
testmap["A"].push_back(x);
7
testmap["A"].push_back(x+1);
8
9
for (auto & x : testmap["A"])
10
std::cout << x << std::endl;
11
}
12
$ g++ prog.cc -Wall -Wextra -std=c++11 -pedantic
Start
0 1
0
Finish