gpt4 book ai didi

c++ - 如何使用 C++ 保存用户信息(如 obj-c 中的 NSUserDefaults)?

转载 作者:行者123 更新时间:2023-11-28 01:03:24 27 4
gpt4 key购买 nike

在 objective-c 中很容易。虽然,在 C 中,您必须调用 fopen、read、close 和所有这些爵士乐。你是如何用 C++ 实现的?

最佳答案

只需使用标题 fstream示例:

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
ofstream file;
file.open("file.txt");
file << "Test!\n";
file.close()
return 0;
}

关于c++ - 如何使用 C++ 保存用户信息(如 obj-c 中的 NSUserDefaults)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7655635/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com