if ((*it)->GetRuntimeClass() == RUNTIME_CLASS(CPointGraph)) ar << (int)1 << *it;什么意思
时间: 2024-02-16 12:44:44 浏览: 52
CObject_my.rar_Vc中cobject_映射 类
这段代码是一个序列化操作,将CPointGraph类的实例指针保存到一个CArchive对象ar中。其中,GetRuntimeClass()函数返回该实例所属的类的运行时信息,RUNTIME_CLASS()函数则用于获取对应类的RUNTIME_CLASS对象。如果该实例是CPointGraph类的实例,则将值为1和指针保存到CArchive对象中。
阅读全文