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

【在 g********l 的大作中提到】
: 如下定义的insert函数,我该怎么在main()里面调用呢?
: 怎么编译总出错。谢谢。
: template
: class BST {
: public:
: void insert(const T &el) {}
: };
: int main()
: {
: BST bst;

avatar
g*l
3
试了,不可以呀

【在 M7 的大作中提到】
: bst.insert(10);
avatar
M7
4
// this is my code, g++ compiles it with no problem.
template
class BST {
public:
void insert(const T& el) {}
};
int main() {
BST bst;
bst.insert(10);
return 0;
}
// what is your error message?

【在 g********l 的大作中提到】
: 试了,不可以呀
avatar
g*l
5
的确可以啊。我函数里面出问题了。
经你提醒找出来了。
非常谢谢

【在 M7 的大作中提到】
: // this is my code, g++ compiles it with no problem.
: template
: class BST {
: public:
: void insert(const T& el) {}
: };
: int main() {
: BST bst;
: bst.insert(10);
: return 0;

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。