所以我决定开始学习 c++ 我想了解如何在其中使用类。我以为我已经正确设置了它(通过查看教程),但它给了我以下错误..
C:\Dev-Cpp\main.cpp `Math' does not name a type
我是 c++ 和 Dev-C++ 编译器的新手,所以我还没有找出错误。这是我的代码..
主类:
#include <cstdlib>
#include <iostream>
using namespace std;
//variables
int integer;
Math math;
int main()
{
math = new Math();
integer = math.add(5,2);
cout << integer << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
这是我的 Math.cpp 类:
#include <cstdlib>
#include <iostream>
#include "Math.h"
using namespace std;
public class Math {
public Math::Math() {
}
public int Math::add(int one, int two) {
return (one+two);
}
}
和数学头文件:
public class Math {
public:
public Math();
public int add(int one, int two) {one=0; two=0};
};
任何帮助将不胜感激,我一直在努力解决这个问题。