📄 cadre.cpp
字号:
#include<iostream.h>
#include<string.h>
#include"Cadre.h"
Cadre::Cadre(char*na,int a,char*s,char*ad,char*tel,char*p)
{
name=new char[strlen(na)+1]; //开辟空间
strcpy(name,na);
age=a;
sex=new char[strlen(s)+1];
strcpy(sex,s);
address=new char[strlen(ad)+1];
strcpy(address,ad);
telephone=new char[strlen(tel)+1];
strcpy(telephone,tel);
post=new char[strlen(p)+1];
strcpy(post,p);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -