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.
如何在 MDI 应用程序 (MFC) 的 Document (CDocument) 类中存储大量数据?没有数据库什么的。我有一个对话框,我可以在其中输入地址。必须存储此地址。我希望你能理解我的问题。
真挚地
您的 CDocument 派生类应该访问和存储您的应用所需的数据。它可以使用您添加的成员变量(适当的数据结构)来执行此操作,或者如果您需要数据库,它可以通过数据库执行此操作。例如,名为 ENROLL 的 MSDN 示例显示了一个管理与数据库的连接的 CDocument。