#include<iostream>
#include<string>
#include<fstream>
using namespace std;
class Person
{
public:
char m_name[100];
int m_age;
};
void test()
{
ofstream ofs;
ofs.open("Person.txt", ios::out | ios::binary);
Person p;
p.m_name[100] = { "李四" };//"const char *" 类型的值不能用于初始化 "char" 类型的实体
p.m_age = 18;
ofs.write((const char*)&p, sizeof(Person));
ofs.close();
}
int main()
{
test();
return 0;
}

"const char *" 类型的值不能用于初始化 "char" 类型的实体,这是什么错误? 哪位钱辈能解释xia
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- 快乐鹦鹉 2021-07-31 22:47关注
p.m_name[100] = { "李四" };
这种写法只能在数组定义的时候使用
可以修改为:
strcpy(p.m_name,"李四");本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用