由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Boost.Serialization no longer maintained?
相关主题
serialization 到底该怎么理解啊?boost serialization的问题
请教一个命名的问题求教:c++中如何从raw data中创建对象?
protobuf 能serialize Float.NaN 么?这道题贴过没有?
vert.x 下使用ORM的疑问reinterpret cast的问题
java里是不是要避免用clone()有人说clone() is broken.Help to compile boost serialization
python pickle 目的是什么如何快速保存大块数据(工作中遇到的问题)
Does C++ have serializer and deserialzierproblem with C# serial port programming
[合集] java怎么这么怪呀?算法题一个
相关话题的讨论汇总
话题: longer话题: define话题: maintained话题: serializer
进入Programming版参与讨论
1 (共1页)
mw
发帖数: 525
1
I just checked the website of Boost.Serialization, it seems that the last
update was in 2007.
is this project no longer active?
anyone gives a clue?
ps: how you guys do serialization these days?
thanks a lot in advance
r*******y
发帖数: 290
2
you can use iostream to do serialization
Define three classes: Serializer, Deserializer, and Serializable
class Serializer
{
define insert or >> for primitive types
use an iostream to hold data
}
class Deserializer
{
define restore or << for primitive types
use an iostream to hold the received buffer
}
class Serializable
{
define Serialize(Serializer& ser) and deserialize(Deserializer& deser)
define actual data to serialize or deserialize
}
You can define the above three

【在 mw 的大作中提到】
: I just checked the website of Boost.Serialization, it seems that the last
: update was in 2007.
: is this project no longer active?
: anyone gives a clue?
: ps: how you guys do serialization these days?
: thanks a lot in advance

1 (共1页)
进入Programming版参与讨论
相关主题
算法题一个java里是不是要避免用clone()有人说clone() is broken.
[合集] C++ question -- how to save objectspython pickle 目的是什么
boost更新太快了Does C++ have serializer and deserialzier
PC 9-bit Serial Communication如何实现[合集] java怎么这么怪呀?
serialization 到底该怎么理解啊?boost serialization的问题
请教一个命名的问题求教:c++中如何从raw data中创建对象?
protobuf 能serialize Float.NaN 么?这道题贴过没有?
vert.x 下使用ORM的疑问reinterpret cast的问题
相关话题的讨论汇总
话题: longer话题: define话题: maintained话题: serializer