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++怎么了,老是这些莫名其妙的错误?哪位高手能看出端倪指教一下啊?谢谢!
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怎么不用呢???