文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Class例程之2指针

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 ;
}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载