gpt4 book ai didi

c++ - basic_string 预期初始化程序编译错误

转载 作者:行者123 更新时间:2023-11-30 02:09:53 24 4
gpt4 key购买 nike

当我尝试编译以下代码时:

#include <string.h>
using namespace std;
typedef std::basic_string<char> foostring;
foostring foo = "foo";

我收到以下错误:

stringtest.cpp:5: error: expected initializer before ‘<’ token
stringtest.cpp:6: error: ‘foostring’ does not name a type

我的编译器是:g++ (Ubuntu 4.4.1-4ubuntu9) 4.4.1
我究竟做错了什么?一旦我弄清楚如何使用它,我打算将它与 Windows TCHAR 一起使用以获得 unicode 支持。

最佳答案

标题是<string> , 不是 <string.h> .

没有一个标准库 header 以扩展名结尾。 (您包含了 C header string.h ,它应该通过 <cstring> 包含在 C++ 中,如果那是您真正想要的。)

关于c++ - basic_string 预期初始化程序编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5016095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com