我有一个头文件“ check.h
”,它定义了以下内容struct
:
#ifndef CHECK_H
#define CHECK_H
#include<string>
struct Test{
std::string check;
};
#endif
我有另一个头文件“ test.h
”,它具有以下函数,返回类型如上struct Test
定义:
#ifndef TEST_H
#define TEST_H
#include<string>
#include "check.h"
Test display(std::string);
#endif
但即使包含"check.h"
在此头文件中,我也会收到unable to resolve identifier
错误消息。我该怎么做才能解决这个问题?