I am a computer scientist who works with a lot of modeling data, and often I find that I save / load data to / from disk. For simple tasks such as a vector, it is usually as simple as dumping a bunch of numbers into a file and what it is.
For more complex things, objects of life, etc., I have save / load functions. Now I am not a computer scientist, and therefore often I see terms here on SO that I just donβt understand (but I love). One of them, which I have encountered recently, is the subject of serialization and the Boost.Serialization library.
From what I understand, serialization is just the process of converting your objects into something that can be saved / loaded from dist or transferred over the network and the like. Given that I most need to save / load my objects to / from the disk, is there any reason why I should switch from simple load / save functions to Boost.Serialization ? What would Boost.Serialization give me, besides what I'm already doing?
c ++ boost serialization
Gradguy
source share