identifier “string” is undefined

【C++】identifier “string” is undefined問題[已解決]

identifier “string” is undefined

Table of Contents

問題描述

在 C++ 中string 是 C++ 標準庫中的一個類型,它位於 std 命名空間下。因此,你必須包含 <string> 標頭檔( header file ),否則編譯器無法識別 string

解決方法

加入標頭檔( header file )

#include <string>
using namespace std;

Posted in 未分類