请教一个C++问题# JobHunting - 待字闺中
g*l
1 楼
如下定义的insert函数,我该怎么在main()里面调用呢?
怎么编译总出错。谢谢。
template
class BST {
public:
void insert(const T &el) {}
};
int main()
{
BST bst;
bst.insert(10); ????
}
怎么编译总出错。谢谢。
template
class BST {
public:
void insert(const T &el) {}
};
int main()
{
BST
bst.insert
}