我已经向头文件中声明的类的方法声明了一个辅助函数,由于某种原因,当我编译源代码文件时,我得到一个错误,告诉我我将变量或字段声明为void。我不确定如何解释这个,因为我的目标是将函数声明为void。
编译器错误如下:
k-d.cpp:10: error: variable or field ‘insert_Helper’ declared void
k-d.cpp:10: error: ‘node’ was not declared in this scope
k-d.cpp:10: error: ‘root’ was not declared in this scope
k-d.cpp:10: error: expected primary-expression before ‘*’ token
k-d.cpp:10: error: ‘o’ was not declared in this scope
k-d.cpp:10: error: expected primary-expression before ‘int’
以下代码中的第10行等效于第5行。
源代码如下:
#include <iostream>
#include "k-d.h" //Defines the node and spot structs
using namespace std;
void insert_Helper(node *root, spot *o, int disc) {
(...Some code here...)
}
void kdTree::insert(spot *o) { //kdTree is a class outlined in k-d.h
insert_Helper(root, o, 0); //root is defined in k-d.h
}
如果有人能发现任何会导致编译器不将其视为函数的内容,我们将不胜感激。谢谢!
P.S。我没有将此标记为kdtree帖子,因为我非常确定解决方案不依赖于代码的这一方面。
更新
这是k-d.h:
#ifndef K_D_H
#define K_D_H
// Get a definition for NULL
#include <iostream>
#include <string>
#include "p2.h"
#include "dlist.h"
class kdTree {
// OVERVIEW: contains a k-d tree of Objects
public:
// Operational methods
bool isEmpty();
// EFFECTS: returns true if tree is empy, false otherwise
void insert(spot *o);
// MODIFIES this
// EFFECTS inserts o in the tree
Dlist<spot> rangeFind(float xMax, float yMax);
spot nearNeighbor(float X, float Y, string category);
// Maintenance methods
kdTree(); // ctor
~kdTree(); // dtor
private:
// A private type
struct node {
node *left;
node *right;
spot *o;
};
node *root; // The pointer to the 1st node (NULL if none)
};
#endif
和p2.h:
#ifndef P2_H
#define P2_H
#include <iostream>
#include <string>
using namespace std;
enum {
xCoor = 0,
yCoor = 1
};
struct spot {
float key[2];
string name, category;
};
#endif
答案 0 :(得分:0)
node
是kdTree
中的嵌套类型,在您的函数定义中,您必须将其命名为kdTree::node
。但是,由于node
是私有的,因此您也必须对此做些什么。
答案 1 :(得分:0)
首先,您需要限定kdTree::node
,因为它被声明为内部结构。其次,您必须让insert_Helper
成为您班级的成员,因为node
是私有的。
额外提示:从using
文件中删除.h
指令,而不是限定string
等所有用途。考虑在很多{{1}中包含该标题文件。