gpt4 book ai didi

c++ - 类头文件

转载 作者:可可西里 更新时间:2023-11-01 10:28:01 26 4
gpt4 key购买 nike

主要.cpp

int main()
{
return 0;
}

细胞.h

#pragma once

class _cell {};

细胞.cpp

#include "cell.h"

实验.h

#pragma once

class _experiment
{
_cell cell;
};

实验.cpp

#include "experiment.h"
#include "cell.h"

错误:

experiment.h(5): error C2146: syntax error : missing ';' before identifier 'cell'
experiment.h(5): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
experiment.h(5): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

这让我抓狂。有什么帮助吗?谢谢!

最佳答案

你必须 #include <cell.h>来自 experiment.h否则_cellexperiment.h 中使用时未定义.

关于c++ - 类头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8481699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com