我在c ++中使用模板类。我创建了一个类的对象,如下所示:
Node<int> *rootNode = (Node<int> *) malloc(sizeof(Node<int>));
现在我在Node中插入了一些条目。在我看到节点已满后,我希望代码创建一个与根节点具有相同类型名称的新节点并存储所需数据。以下是我的插入方法:
template <typename T>
RC Node<T>::Insert(void *key)
{
if(space() > 0) { // check if current node has ample space
// add data in the current node
}
else
{
siblingNode = new Node<T>();
if (this->Split(siblingNode, key)) {
if (siblingNode != NULL) {
siblingNode.display();
}
}
}
}
}
我尝试显示使用
创建的新节点siblingNode.display()
方法,但它给我编译错误
request for member ‘display’ in ‘siblingNode’, which is of non-class type ‘Node<int>*’
如何确保siblingNode的类型名与调用insert函数的节点的类型名相同?
答案 0 :(得分:2)
siblingNode
是一个指针,因此您需要使用指针成员解引用运算符:
siblingNode->display()
错误告诉您,您要取消引用的类型是指针,而不是您需要与Node<T>
具有相同的类型名称。