我正在向 flatbuffer 编译器提供以下 proto 文件以生成 .fbs 文件。
文件:test.proto
message A {
optional int32 afoo = 1;
message B {
optional int32 bfoo_ = 1;
}
optional B bfoo= 2;
}
message C {
optional int32 abar = 1;
message B {
optional int32 bbar_ = 1;
}
optional B bbar = 2;
}
在此之后我运行:flatc --proto test.proto,它将生成 .fbs 文件
文件:test.fbs // 从 test.proto 生成
namespace ;
table A {
afoo:int;
bfoo:_A.B;
}
namespace _A;
table B {
bfoo_:int;
}
namespace ;
table C {
abar:int;
bbar:_C.B;
}
namespace _C;
table B {
bbar_:int;
}
这里要注意的是“B”已经被拉出到全局命名空间之后我运行了flat -cpp test.proto,最终生成了错误的头文件。包含 B 的两个定义
struct B FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table