Class程序练习1
时间:2010-03-06 来源:hnrainll
#include <iostream>
#include <string>
using namespace std;
class CStudent
{
public:
CStudent();
CStudent(char *name,int age);
void initialize(char *name,int age);
void output();
private:
char m_name[20];
int m_age;
};
CStudent::CStudent()
{
strcpy(m_name,"blank");
m_age = 0;
}
CStudent::CStudent (char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::initialize(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::output()
{
cout <<m_name<<" "<<m_age<<endl;
}
int main()
{
CStudent stu1;
stu1.output();
CStudent stu2("peg",22);
stu2.output();
CStudent stu3;
stu3.initialize("KEVIN",23);
stu3.output();
return 0;
}
2010.03.06@kevin
#include <string>
using namespace std;
class CStudent
{
public:
CStudent();
CStudent(char *name,int age);
void initialize(char *name,int age);
void output();
private:
char m_name[20];
int m_age;
};
CStudent::CStudent()
{
strcpy(m_name,"blank");
m_age = 0;
}
CStudent::CStudent (char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::initialize(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::output()
{
cout <<m_name<<" "<<m_age<<endl;
}
int main()
{
CStudent stu1;
stu1.output();
CStudent stu2("peg",22);
stu2.output();
CStudent stu3;
stu3.initialize("KEVIN",23);
stu3.output();
return 0;
}
2010.03.06@kevin
相关阅读 更多 +