Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请告诉我们如何将类的对象写入文件
写入后,如果数据成员的值发生更改,那么如何在文件中更新它而不导致重复条目
在写入文件时,如果数据成员在写入时未初始化,是否会导致任何问题
文件在准确处理类对象时如何工作
创建一个 ofstream 对象并写入所需的路径。
如果您想更新,只需循环并寻找该对象并写入。
由于文件将以二进制创建,您无法在记事本中读取它,您必须通过 ifstream 对象将其读回并将其输出到控制台或文本文件中。
检查此链接http://www.cplusplus.com/doc/tutorial/files/