使用 Boost::serialization 的 XML 层次结构

发布于 2024-11-17 02:06:29 字数 499 浏览 2 评论 0原文

我最近开始使用 Boost::serialization 进行研究工作,虽然它非常强大且易于使用,但我对最终的 xml 格式仍然有一些麻烦。我有一个类层次结构,序列化时,每个子类都嵌套在 xml 输出中它自己的标记内。该子类标记是由于使用 boost::serialization::base_object 而创建的。有谁知道如何将基类和子类保持在 xml 层次结构的同一级别?

例如:当前格式

<基类> <属性>值 <子类>

目标格式:

<属性>值

I've recently begun to use Boost::serialization for research work and although it is extremely powerful and easy to use, I still have a little trouble with the final xml format. I have a hierarchy of classes and when serialized, each subclass is nested within it's own tag in the xml output. This subClass tag is created because of the use of boost::serialization::base_object. Does anybody know how to keep the base and sub classes in the same level of xml hierarchy ?

Ex : the current format


<baseClass>
<attr>value</attr>
<subClass>
<otherAttr>value</otherAttr>
</subClass>
</baseClass>

the target format :

<baseClass> <attr>value</attr> <otherAttr>value</otherAttr> </baseClass>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

踏雪无痕 2024-11-24 02:06:29

Boost.Serialization 并不是一种写入特定文件格式的机制。这是一种将类的数据转储到文件中,然后再次使用这个程序读取该数据的方法。格式不是您应该关心的事情。

如果您使用特定的文件格式,那么正如 Merlyn 建议的那样,您想要的是 Boost.Karma 生成器。

Boost.Serialization is not intended for being a mechanism to write to a specific file format. It is a way to dump a class's data to a file, and then read that data with this program again. The format is not something that should concern you.

If you are using a specific file format, then what you want, as Merlyn suggested, is a Boost.Karma generator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文