Chinaunix首页 | 论坛 | 博客
  • 博客访问: 631736
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:09:03

原文地址:静态成员实例 作者:luozhiyong131

/*

 * 使用静态数据成员实现数据共享

 * Lzy      2011-8-4

 */

 

#include

using namespace std;

 

class Work

{

private:   

    int worktime;

public:

    static int total;

    Work(int i=0):worktime(i){total += worktime;}

};

 

int Work::total = 0;

 

int main(void)

{

    Work p1(2),p2(3),p3(4);

    cout<

    return 0;

}

 

 

/*

 * 使用静态数据成员实现数据共享

 * Lzy      2011-8-4

 */

 

#include

using namespace std;

 

class Test

{

private:

    int m;

public:

    static int n;

    Test(int i):m(i){n++;}

    void display(){cout<<"n="<" m="<

};

int Test::n = 0;

 

int main(void)

{

    Test t1(11);

    t1.display();

 

    Test t2(22);

    t2.display();

 

    Test t3(33);

    t3.display();

 

    return 0;

}

 

 

 

/*

 * 用两种方法调用静态成员函数

 * Lzy      2011-8-4

 */

 

#include

using namespace std;

 

class Person

{

private:

    static int id;

public:

    static int number(){return id;};

};

 

int Person::id = 1001;

 

int main(void)

{

    Person p;

    cout<<"类名引用:"<

    cout<<"对象引用:"<

    return 0;

}

 

/*

 * 静态成员函数引用非静态数据成员

 * Lzy      2011-8-4

 */

 

#include

using namespace std;

 

class Person

{

private:

    int id;

public:

    Person(int i):id(i){}

    static int number(Person &p){return p.id;};

};

 

int main(void)

{

    Person p(5);

    cout<<"类名引用:"<

    cout<<"对象引用:"<

    return 0;

}

 

阅读(158) | 评论(0) | 转发(0) |
0

上一篇:友元实例

下一篇:类模板

给主人留下些什么吧!~~