9

我写了这个头文件(header1.h)

#ifndef HEADER1_H
#define HEADER1_H

class first ;

//int summ(int a , int b) ;



#endif

这个源文件(header1.cpp and main.cpp)

#include <iostream>
#include "header1.h"

using namespace std;


class first
{
    public:
  int a,b,c;
  int sum(int a , int b);

};

  int first::sum(int a , int b)
{

    return a+b;
}

 

#include <iostream>
#include "header1.h"


using namespace std;


   first one;

int main()
{
   int j=one.sum(2,4);
    cout <<  j<< endl;
    return 0;
}

但是当我运行这个程序时codeblocks,我给出了这个错误:

聚合“第一个”的类型不完整,无法定义。

4

3 回答 3

14

您不能将类声明放在 .cpp 文件中。您必须将它放在 .h 文件中,否则编译器将看不到它。编译 main.cpp 时,“first”类型为class first;. 这根本没有用,因为这不会告诉编译器任何东西(比如首先是什么大小或在这种类型上哪些操作是有效的)。移动这个块:

class first
{
public:
    int a,b,c;
    int sum(int a , int b);
};

从 header1.cpp 到 header1.h 并class first;在 header1.h 中删除

于 2013-07-23T01:07:16.097 回答
1

如果您也使用主函数,只需在顶部定义类,然后再定义主函数。无需显式创建单独的头文件。

于 2015-06-13T02:37:31.227 回答
0

您需要在头文件中声明整个类(该文件包含在实际使用该类的每个地方)。否则,编译器将不知道如何sum在类中“查找”(或者它应该为类保留多少空间)。

于 2013-07-23T01:08:01.780 回答