问题描述
- 太没有道理了,g++编译这么简单的程序出现错误:‘string’不是一个类型名
- using namespace std;
#includetemplate
class tree_node_t
{
public:
string &to_string(string *result int prefix = 0);
void set_data(const T &data);protected:
T m_data;
};vs编译得好好的,g++怎么了,老是这些莫名其妙的错误?哪位高手能看出端倪指教一下啊?谢谢!
解决方案
原来要加#include <iostream>,调试g++真麻烦,不知道vs怎么不用呢???
解决方案二:
第二行尖括号和里面的csting被csdn自动去掉了,源代码是有的
解决方案三:
#include <cstring>
解决方案四:
using namespace std;
#include <cstring>
template <typename T>
class tree_node_t
{
public:
string &to_string(string *result int prefix = 0);
void set_data(const T &data);
protected:
T m_data;
};
vs编译得好好的,g++怎么了,老是这些莫名其妙的错误?哪位高手能指教一下啊?谢谢!
解决方案五:
错误报告说:‘string’不是一个类型名
真的莫名其妙!不是有using namespace std;#include <cstring>吗??即使用std::string也不行
解决方案六:
#include
#include
using namespace std;
时间: 2024-11-20 21:24:49