#include <cstring>
using namespace std;
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;
};
錯誤報告說:‘string’不是一個類型名
真的莫名其妙!string換成std::string也不行。
vs編譯得好好的,不知道g++怎麼的,老是這些莫名其妙的錯誤?哪位高手能指教一下啊?謝謝!
原來要加#include <iostream>,調試g++真麻煩,不知道vs怎麼不用呢???