定义姓名和性别用什么类型?为什么用string类型定义name和sex,调试会出错;而char name[20]正确?
#include"stdafx.h"#include<iostream>usingnamespacestd;structstudent{intnum;//charname...
#include "stdafx.h"
#include<iostream>
using namespace std;
struct student
{
int num;
//char name[20];
//char sex[3];
string name;
string sex;
int age;
}stu = {111002,"李四","男",22};//声明结构体类型的同时,定义结构体类型的变量,并赋初值。也可以分开
//"男"占3个字节,因后面有结束符,所以要char[3]。
int _tmain(int argc, _TCHAR* argv[])
{
cout << stu.num << " " << stu.name << " " << stu.sex << " " << stu.age << endl;
return 0;
} 展开
#include<iostream>
using namespace std;
struct student
{
int num;
//char name[20];
//char sex[3];
string name;
string sex;
int age;
}stu = {111002,"李四","男",22};//声明结构体类型的同时,定义结构体类型的变量,并赋初值。也可以分开
//"男"占3个字节,因后面有结束符,所以要char[3]。
int _tmain(int argc, _TCHAR* argv[])
{
cout << stu.num << " " << stu.name << " " << stu.sex << " " << stu.age << endl;
return 0;
} 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏20(财富值+成长值)
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
你这个是什么语言?你确定有string这个类型吗
追问
#include "stdafx.h"
#include
using namespace std;
看到这头文件和命名空间,当然是C++
追答
要想使用标准C++中string类,必须要包含
#include // 注意是,不是,带.h的是C语言中的头文件
using std::string;
using std::wstring;
或
using namespace std;
下面你就可以使用string/wstring了,它们两分别对应着char和wchar_t。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询