Heim > Fragen und Antworten > Hauptteil
我有两个类Population和Group,因为要写一个Group的成员函数
void initialize(Population<T> &p, const int id);
但我已经加载了Population的头文件,IDE却提示我Population' has not been declared
,请问这是什么情况??
这是Population的内容和位置
怪我咯2017-04-17 15:04:24
问题已经解决了,因为Population.h中已经包含了Group文件。所以在Group类的上面声明一下Population类就可以使用了。。