我应该对使用 boost::archive 保持警惕吗?
我想使用 boost::archive::iterators::base64_from_binary。 但我似乎无法弄清楚为什么它位于“存档”下。 这意味着什么? 我是否应该出于任何原因对使用此代码持谨慎态度?
谢谢 -
I want to use boost::archive::iterators::base64_from_binary. But I can't seem to figure out why it is under "archive." What does this imply? Should I be leery of using this code for any reason?
Thanks--
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为归档指的是它归档数据的功能,而不是过时的......
I think that the archive refers to it's function in archiving data, not as being obsolete...
boost::archive
是序列化库中使用的命名空间。 一般来说,只要不在名为detail
的命名空间中,就可以在 boost 中使用内容。boost::archive
is a namespace used in the Serialization library. In general, it's ok to use stuff in boost as long as it's not in a namespace calleddetail
.