該代碼的基礎在教程中找到,所以我不太確定它爲什麼這樣做。類/頭文件 - 無法在沒有對象的情況下調用成員
錯誤:
main.cpp: In function ‘int main()’:
main.cpp:8:32: error: cannot call member function ‘int TestC::getAnswer()’ without object
std::cout << TestC::getAnswer() << std::endl;
的main.cpp
#include <iostream>
#include "TestC.hpp"
int main()
{
TestC(1, 1);
std::cout << TestC::getAnswer() << std::endl;
return 0;
}
TestC.cpp
#include "TestC.hpp"
TestC::TestC(int x, int y)
{
gx = x;
gy = y;
}
int TestC::getSum()
{
return gx + gy;
}
TestC.hpp
#ifndef TestC_H
#define TestC_H
class TestC
{
int gx;
int gy;
public:
TestC(int x, int y);
int getAnswer();
};
#endif
這是怎麼了編譯:
g++ main.cpp -o Main
爲了'TESTC ::的getAnswer()'工作,'的getAnswer()'將有成爲「TestC」類的「靜態」成員。 – Andro 2014-09-22 17:45:30
所以我把'int getAnswer();'改成'static int getAnswer();'但它仍然不起作用。它只是爲TestC :: TestC()和TestC :: getAnswer()提供了類似的錯誤,用於未定義的引用。 – Nathan 2014-09-22 17:50:43
看完這個,你應該明白,應該看看事情是怎麼樣的。 http://www.learncpp.com/cpp-tutorial/812-static-member-functions/ – Andro 2014-09-22 17:54:54