能说会道小小明 发表于 2020-12-2 21:53:53

VS2017 中 用string 定义字符串 为什么不行?


#include <iostream>
#include <cmath>
#include <iomanip>
#include <string>

using namespace std;

int main()
{
        string str = "Hello World" ;
        cout << str << endl;
        return 0;
}

显示不允许使用类型名,问题出在哪了?

johnsonz99 发表于 2020-12-6 21:59:59

可以编译啊
页: [1]
查看完整版本: VS2017 中 用string 定义字符串 为什么不行?