Class例程之2指针
时间:2010-03-07 来源:hnrainll
#include <iostream>
#include <string>
using namespace std;
class CStudent
{
public:
CStudent();
CStudent(char *name,int age);
void init(char *name,int age);
void output();
private:
char m_name[20];
int m_age;
};
CStudent::CStudent()
{
strcpy(m_name,"TOM");
m_age = 0;
}
CStudent::CStudent(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::init(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::output()
{
cout<< m_name <<" " <<m_age<<endl;
}
int main()
{
CStudent stu1;
CStudent *p = &stu1;
p->init("Peg",22);
(*p).output();
return 0 ;
}
#include <string>
using namespace std;
class CStudent
{
public:
CStudent();
CStudent(char *name,int age);
void init(char *name,int age);
void output();
private:
char m_name[20];
int m_age;
};
CStudent::CStudent()
{
strcpy(m_name,"TOM");
m_age = 0;
}
CStudent::CStudent(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::init(char *name,int age)
{
strcpy(m_name,name);
m_age = age;
}
void CStudent::output()
{
cout<< m_name <<" " <<m_age<<endl;
}
int main()
{
CStudent stu1;
CStudent *p = &stu1;
p->init("Peg",22);
(*p).output();
return 0 ;
}
相关阅读 更多 +