Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.79 KB

File metadata and controls

52 lines (45 loc) · 1.79 KB
title Serialization: Serializing an Object | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic article
dev_langs
C++
helpviewer_keywords
serializing objects [C++]
serialization [C++], objects
objects [C++], serializing
ms.assetid 1db772b1-ad55-4fcf-b133-126cca082510
caps.latest.revision 9
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

Serialization: Serializing an Object

The article Serialization: Making a Serializable Class shows how to make a class serializable. Once you have a serializable class, you can serialize objects of that class to and from a file via a CArchive object. This article explains:

You can let the framework create the archive for your serializable document or explicitly create the CArchive object yourself. You can transfer data between a file and your serializable object by using the << and >> operators for CArchive or, in some cases, by calling the Serialize function of a CObject-derived class.

See Also

Serialization