2

以下は私のコードです:

MathCore.h

#ifndef __CC_MATHCORE_H__
#define __CC_MATHCORE_H__

#include "math.h"
class MathCore
{
public:
    MathCore();
    virtual ~MathCore( );
    int x (int n  );
};

#endif

MathCore.cpp

#ifndef __CC_MATHCORE_H__
#define __CC_MATHCORE_H__

#include "MathCore.h"

MathCore::MathCore()//a
{

}
MathCore::~ MathCore()//b
{

}
int MathCore::x (int n  )//c
{
    float v=0;
    return v;
}
#endif 

しかし、それはでエラーを報告します

a:C++ requires a type specifier for all declarations
  Use of undeclared identifier 'MathCore'
b:Expected a class or namespace
c:Expected a class or namespace

あなたのコメント歓迎

4

4 に答える 4