Ho letto attraverso un sacco di domande simili ma non ho trovato la risposta. Sto usando Visual Studio 2010 e boost 1.47.serializzazione boost dell'oggetto derivato non chiama serialize derivato()
Ecco il codice, è completo e compilabile:
#include "stdafx.h"
#include <string>
#include <sstream>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/serialization/export.hpp>
using namespace std;
class BaseObject
{
public:
BaseObject(void) { };
virtual ~BaseObject(void) { };
template<class Archive>
void serialize(Archive &ar, const unsigned int version)
{ /* nothing happens here */ };
};
class DerivedObject : public BaseObject
{
public:
string text;
public:
DerivedObject(void) { };
~DerivedObject(void) { };
template<class Archive>
void serialize(Archive &ar, const unsigned int version)
{
ar & text;
};
};
BOOST_CLASS_EXPORT(DerivedObject)
int _tmain(int argc, _TCHAR* argv[])
{
DerivedObject der;
der.text = "Testing!";
std::ostringstream os;
boost::archive::text_oarchive oa(os);
oa.register_type<DerivedObject>();
// I made a DerivedObject, but I'm casting it to a BaseObject
// as the serialization code should not have to know what type it is
BaseObject *base = &der;
// now serialize it
oa << *base;
printf("serialized: %s\r\n",os.str().c_str());
return (0);
}
si può vedere che è reale semplice, e ho aggiunto la magia BOOST_CLASS_EXPORT e oa.register_type che dovrebbe assicurarsi DerivdObject :: Serialize() viene chiamato anche se non è un metodo virtuale .. ma viene chiamato solo serialize() in BaseObject. Forse un problema specifico di Visual C++? Si prega di consulenza?
Il tuo 'BaseObject :: serialize' non dovrebbe essere contrassegnato come' virtuale'? – Nick
No, è un modello, non può t –
Buon punto - non ho notato il bit del template! – Nick