using namespace std;
#include
template
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怎麼不用呢???