我试图将一个类对象声明为extern
,但出现以下错误:
g++ a1.cpp -std=c++11 In file included from b1.h:5:0, from a1.cpp:2: c1.h:6:8: error: ‘b1’ does not name a type extern b1 obj_b1; ^
我看过 Issue declaring extern class object 和 '[Class name]' does not name a type in C++
,我认为我正在按照此处提到的步骤进行操作。但是找不到问题所在。
文件为:
a1.cpp
#include<iostream>
#include "b1.h"
b1 obj_b1;
int main(){
//access object from class B
std::cout << " test " << std::endl;
std::cout << " obj_b1 value is " << obj_b1.value << std::endl;
obj_b1.value = 6;
return 0;
}
b1.h
#ifndef CLASS_B1
#define CLASS_B1
#include "c1.h"
class b1{
public:
int value=5;
int print_value();
};
#endif
b1.cpp
#include <iostream>
#include "b1.h"
int b1::print_value(){
std::cout << "value in b1 is " << value << std::endl;
}
c1.h
#ifndef CLASS_C1
#define CLASS_C1
#include "b1.h" // this is an attempt to fix issue, but didnt work
extern b1 obj_b1; // Is there a better place to declare this ?
class c1 {
private:
int c1_value=10;
int c1_print_value();
};
#endif
c1.cpp
#include<iostream>
#include "c1.h"
int c1::c1_print_value()
{
std::cout << "in c1 , value is " << c1_value << std::endl;
std::cout << " obj_b1.value is " << obj_b1.value << std::endl;
return 0;
}
当我在extern声明的上方添加b1
时,我不明白为什么编译器会抱怨b1.h
。有人可以帮助解决问题吗?
答案 0 :(得分:2)
b1.h
包括c1.h
,而c1.h
包括b1.h
。这是一团糟。通过使用#indef
/ #define
组合,您可以防止无限递归,但是仍然很混乱。
obj_b1
与class c1
没有任何关系,因此请从extern b1 obj_b1;
中删除c1.h
。
现在c1.h
不依赖于b1.h
中的任何内容,因此您可以从#include "b1.h"
中删除c1.h
。
出于类似原因,您应该从#include "c2.h"
中删除b1.h
。
另一方面,c2.cpp 确实取决于obj_b1
(假设obj1.name
是一个错字,应该是obj_b1.name
),因此您应该输入extern b1 obj_b1;
中的b1.h
和#include "b1.h"
中的c2.cpp
。
要进行一些额外的清理,请将b1 obj_b1;
从a1.cpp
移到b1.cpp