【C++】identifier “string” is undefined問題[已解決] by 小書僮Posted on2024/09/222024/09/22 Table of Contents Toggle 問題描述解決方法 問題描述 在 C++ 中,string 是 C++ 標準庫中的一個類型,它位於 std 命名空間下。因此,你必須包含 <string> 標頭檔( header file ),否則編譯器無法識別 string。 解決方法 加入標頭檔( header file ) #include <string> using namespace std; Post Views: 950