C++中创建Client类

C++中创建Client类... C++中创建Client类 展开
 我来答
xiangjuan314
2016-05-17 · TA获得超过3.3万个赞
知道大有可为答主
回答量:2.9万
采纳率:0%
帮助的人:2886万
展开全部
#include<iostream>
#include<string>
using namespace std;
class Client
{
private:
char* m_name;
int m_age,m_type;
public:
Client( char* m_name,int m_age,int m_type)
{
this->m_name=m_name;
this->m_age=m_age;
this->m_type=m_type;
}
Client()
{
m_name="aaa";
m_age=20;
m_type=1;

}
void SetName(char *pName)
{
m_name=pName;
}
void GetName()
{
cout<<"名字为:"<<m_name<<endl;
}
void SetType(int type)
{
m_type=type;
}
void GetType()
{
cout<<"类型为:"<<m_type<<endl;
}
};
void display(Client c)
{
c.GetName();
c.GetType();
}
int main()
{
Client c("yyy",23,2);
c.SetName("rrrr");
c.SetType(2);
display(c);
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式