C++ 入門指南 4.01
練習 19.1 參考程式 - 練習標準程式庫的 map
// 引入標準程式庫中相關的輸入、輸出程式 #include <iostream> // 引入標準程式庫中的 map #include <map> // 引入標準程式庫中相關的 string #include <string> // cout 為 std 中的輸出物件 using std::cout; // endl 為 std 中的斷行符號 using std::endl; // string 為 std 中的字串型態 using std::string; // map 為 std 中的集合體型態 using std::map; int main(void) { // 宣告建立字串、整數 map map<string, int> m = { {"Mary", 70}, {"John", 80}, {"Tony", 90}, {"Alice", 100} }; // 利用迴圈印出 map 元素 for (auto it = m.begin(); it != m.end(); it++) { cout << it->first << ":" << it->second << endl; } // 最後回傳 0 給作業系統 return 0; } /* 《程式語言教學誌》的範例程式 http://kaiching.org/ 檔名:exercise1901.cxx 編譯:g++ exercise1901.cxx -std=c++11 執行:./a.out 功能:C++入門指南單元十九的練習 作者:張凱慶 */