本文整理汇总了C++中Cat::deserialize方法的典型用法代码示例。如果您正苦于以下问题:C++ Cat::deserialize方法的具体用法?C++ Cat::deserialize怎么用?C++ Cat::deserialize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cat
的用法示例。
在下文中一共展示了Cat::deserialize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: data
//---------------------------------------------------------------------------
// TESTS:
//---------------------------------------------------------------------------
TEST( CatClass, Serialize_tests )
{
// initial data
Cat data(2,3,4,5,6,7,8);
// Check the data before the save
CHECK( data.getX() == 2 );
CHECK( data.getA() == 3 );
CHECK( data.getB() == 4 );
CHECK( data.getY() == 5 );
CHECK( data.getZ() == 6 );
CHECK( data.getC() == 7 );
CHECK( data.getD() == 8 );
// create a local buffer
char buff[ 1024 ];
// serialize the data
data.serialize( buff );
// Create a new
Cat newData;
// deserialize the data
newData.deserialize( buff );
// validate that data is the same
CHECK( newData.getX() == 2 );
CHECK( newData.getA() == 3 );
CHECK( newData.getB() == 4 );
CHECK( newData.getY() == 5 );
CHECK( newData.getZ() == 6 );
CHECK( newData.getC() == 7 );
CHECK( newData.getD() == 8 );
// check the size of the data structure
CHECK( sizeof(Cat) == 24 );
}