我有 2 个头文件和一个源文件,
食物.h:
#ifndef _FOOD_H
#define _FOOD_H
struct food {
char name[10];
};
#endif
狗.h:
#ifndef _DOG_H
#define _DOG_H
class food; //forward declaration
class Dog {
public:
Dog(food f);
private:
food _f;
};
#endif
这是的源文件class dog
,
//dog.cpp
#include "dog.h"
#include "food.h"
Dog::Dog(food f) : _f(f)
{}
问题是我可以编译上面的代码,我得到一个错误说_f has incomplete type
。
我以为我可以提出一个前向声明 indog.h
和 include food.h
in dog.cpp
,但它不起作用,为什么?而且我不应该将用户定义的头文件放在.h
文件中,对吗?它已被弃用,不是吗?