啊文件
class A{
public:
static int* func (int &b);
}
A.cpp
int* A::func(int &b){
//some definition here
}
我在其他文件中调用上述函数。我已经在其中包含了 .h 文件。当我尝试编译时出现以下错误
对 A::func(int &) 的未定义引用
啊文件
class A{
public:
static int* func (int &b);
}
A.cpp
int* A::func(int &b){
//some definition here
}
我在其他文件中调用上述函数。我已经在其中包含了 .h 文件。当我尝试编译时出现以下错误
对 A::func(int &) 的未定义引用