這是我的類定義:解析的外部符號 「私人:靜態INT數學::結果」
#include <iostream>
using namespace std;
class Math
{
private:
static int result;
public:
static int add(int a , int b)
{
result = a + b ;
return result;
};
};
這是主要的:
#include <iostream>
#include "Amin.cpp"
using namespace std;
int main()
{
Math::add(2,3);
}
和我得到了這些錯誤visual studio:
錯誤LNK2001:無法解析的外部符號「private:static int Math :: result」 錯誤LNK1 120:1無法解析的外部
問候
這已被問及許多次。請先查詢。 –