我有一个头文件helper.h
class helper
{
public:
static int someVal();
};
int helper::someVal()
{
return 999;
}
在我的 c 类中,我someVal
按如下方式调用该方法
#include "helper.h"
.
.
int answer = helper::someVal();
有没有办法代替这样的电话?
int answer = someVal();
下面的解决方案是 helper.h --
static int someVal();
int someVal()
{
return 999;
}