我在cpp程序中使用了一个前向枚举声明,导致gdb给我一个不兼容的类型。这是一个最小的工作示例:
definitions.h:
/*definitions.h*/
#ifndef DEFINITIONS_H_
#define DEFINITIONS_H_
enum ForwardEnum : int;
typedef ForwardEnum ForwardEnum;
typedef struct {
const ForwardEnum EnumValue;
} ElemConfig;
#endif //DEFINITIONS_H_
的config.h:
/*config.h*/
#ifndef CONFIG_H_
#define CONFIG_H_
#include "definitions.h"
enum ForwardEnum : int {
EnumValue1 = -1,
EnumValue2,
};
#endif //CONFIG_H_
classA.h:
/*classA.h*/
#ifndef CLASSA_H_
#define CLASSA_H_
#include <array>
#include "definitions.h"
#define N_ELEMS 8
class A{
private:
const std::array<ElemConfig, N_ELEMS> Config;
public:
A(const std::array<ElemConfig, N_ELEMS>);
};
#endif //CLASSA_H_
main.cpp中:
/*main.cpp*/
#include <iostream>
#include <array>
#include "definitions.h"
#include "config.h"
#include "classA.h"
const std::array<ElemConfig, N_ELEMS> AConfig {{{EnumValue1}}};
A::A(const std::array<ElemConfig, N_ELEMS> Config) : Config(Config)
{
ForwardEnum a = Config[0].EnumValue;
std::cout << a << std::endl;
};
int main(void)
{
A objectA(AConfig);
}
当我尝试在gdb中调试类A构造函数时,我得到了枚举变量的不完整类型。根据这个question,我尝试将其转换为我认为的兼容类型:
print (ForwardEnum) a
当失败时,我试验了问题是否是typedef:
print (const enum ForwardEnum) a
还要反汇编构造函数,但都失败了。
那么打印EnumValue内容的正确类型转换是什么?
(或者,或者,如何保持前向声明,我如何让gdb解决不兼容的类型?)
我正在使用gdb 7.7.1和gcc 4.8.4
答案 0 :(得分:1)
尝试使用print /d a
。
/d
表示格式为整数。
请参见gdb中的help x
和help print
。