C++语言基础 例程 静态成员

贺老师的教学链接  本课讲解

问题的提出
现状:n个同类的对象,每一个对象都分别有自己的数据成员,各自有值,互不相干。
期望:希望有某一个或几个数据成员为某类所有对象所共有,以实现数据共享。
方案:用全局变量

#include<iostream>
using namespace std;
int N = 0;
class Class
{
private:
   int a;
public:
   Class(){N++;a=0;}
   void add(){N++;}
};

int main( )
{
    Class c1, c2;
    N=300;
    c1.add();
    cout<<N<<endl;
    return 0;
}

例 引用静态数据成员

#include <iostream>
using namespace std;
class Student
{
public:
    Student(int n,string nam, int a):
            num(n),name(nam),age(a) { ++count; }
    ~Student() { --count; }
    int getCount()   { return count; }
private:
    static int count;
    int num;
    string name;
    int age;
};

int Student::count=0;
int main( )
{
    Student stu1(1001,"He",40);
    cout<<stu1.getCount()<<endl;
    Student *pt=new Student(1001,"You",20);
    cout<<pt->getCount()<<endl;
    cout<<stu1.getCount()<<endl;
    delete pt;
    cout<<stu1.getCount()<<endl;
    return 0;
}

用类名访问静态数据成员

#include <iostream>
using namespace std;
class Student
{
public:
    Student(int n,string nam, int a):
            num(n),name(nam),age(a) { ++count; }
    ~Student() { --count; }
    int getCount()   { return count; }
    static int count;
private:
    int num;
    string name;
    int age;
};

int Student::count=0;
int main( )
{
    cout<<Student::count<<endl;
    Student *pt=new Student(1001,"You",20);
    cout<<pt->getCount()<<endl;
    delete pt;
    cout<<Student::count<<endl;
    return 0;
}

为什么出错?

#include <iostream>
using namespace std;
class Student
{
public:
    Student(int n,string nam, int a):
            num(n),name(nam),age(a) { ++count; }
    ~Student() { --count; }
    int getCount()   { return count; }
private:
    static int count;
    int num;
    string name;
    int age;
};
int Student::count=0;
int main( )
{
    cout<<Student::getCount()<<endl;
    cout<<Student::count<<endl;
    Student *pt=new Student(1001,"You",20);
    cout<<pt->getCount()<<endl;
    delete pt;
    return 0;
}

静态成员函数

#include <iostream>
using namespace std;
class Student
{
public:
    Student(int n,string nam, int a):
            num(n),name(nam),age(a) { ++count; }
    ~Student() { --count; }
    static int getCount()   { return count; }
private:
    static int count;
    int num;
    string name;
    int age;
};
int Student::count=0;
int main( )
{
    cout<<Student::getCount()<<endl;
    Student *pt=new Student(1001,"You",20);
    cout<<pt->getCount()<<endl;
    delete pt;
    return 0;
}

静态成员函数不能处理非静态数据成员

#include <iostream>
using namespace std;
class Student
{
public:
    Student(int n,string nam, int a):
            num(n),name(nam),age(a) { ++count; }
    ~Student() { --count; }
    static int getCount()
        { age++; return count; }
private:
    static int count;
    int num;
    string name;
    int age;
};
int Student::count=0;
int main( )
{
    cout<<Student::getCount()<<endl;
    Student *pt=new Student(1001,"You",20);
    cout<<pt->getCount()<<endl;
    delete pt;
    return 0;
}
时间: 2024-11-01 20:38:06

C++语言基础 例程 静态成员的相关文章

C++语言基础 例程 虚析构函数

贺老师的教学链接  本课讲解 问题的由来 #include <iostream> using namespace std; class Point { public: Point( ) { } ~Point() { cout<<"executing Point destructor"<<endl; } }; class Circle:public Point { public: Circle( ) { } ~Circle( ) { cout<&

C++语言基础 例程 应用系统开发:银行储蓄系统

贺老师的教学链接  本课讲解 说明:(1)下面的代码,只演示了利用链表作为存储结构的可选处理方法,本讲提到的其他方面的拓展,请感兴趣做下去的同学自行使用相关技术组合起来,形成一个完整的系统.(2)运行程序,登录用户名和密码,请阅读程序,从程序中找出.建议建立多文件项目,将代码拷贝到IDE中看.(3)本程序由我的2011级学生刘镇参加企业组织的实训中完成,原文在:点击打开链接 Record.h #ifndef HEADER_RECORD //条件编译 #define HEADER_RECORD #

C++语言基础 例程 C++中的输入和输出

贺老师的教学链接 程序将自行识别符号 #include <iostream> using namespace std; int main() { int a,b; char op; cin>>a>>op>>b cout<<"result: "<<'\n'; cout<<"a: "<<a<<'\n'; cout<<"b: "<

C++语言基础 例程 重载流插入运算符和流提取运算符

贺老师的教学链接  本课讲解 重载流插入运算符"<<" #include <iostream> using namespace std; class Complex { public: Complex( ) { real=0; imag=0; } Complex(double r,double i) { real=r; imag=i; } Complex operator + (Complex &c2); //运算符"+"重载为成员函

C++语言基础 例程 文本文件的读写

贺老师的教学链接  本课讲解 示例:将数据写入ASCII文件 #include <iostream> #include <fstream> #include <cstdlib> using namespace std; int main( ) { int a[10]; ofstream outfile("f1.dat",ios::out);//定义文件流对象,打开磁盘文件"f1.dat" if(!outfile) //如果打开失败

C++语言基础 例程 标准输入流

贺老师的教学链接  本课讲解 例: 输入个数不确定的成绩 #include <iostream> using namespace std; int main( ) { float grade; cout<<"enter grade:"; while(cin>>grade)//能从cin流读取数据 { if(grade>=85) cout<<grade<<" GOOD!"<<endl; if

C++语言基础 例程 函数中的引用

贺老师的教学链接  本课讲解 引用作为形参 #include<iostream> using namespace std; class Sample { int x; public: Sample(int a): x(a) {cout<<"A";} Sample(Sample &a): x(a.x) {cout<<"B";} int getX(){return x;} }; void disp(Sample &s)

C++语言基础 例程 二进制文件应用案例

贺老师的教学链接  本课讲解 系统升级第一步:转换现有数据格式(附:数据文件点击打开链接) #include <iostream> #include <fstream> #include <cstdlib> using namespace std; typedef struct { int NO; char name[8]; int chinese; int math; int english; int Comprehensive; int total; } Stude

C++语言基础 例程 文件的随机读写

贺老师的教学链接  本课讲解 示例:写到尾再从头读 #include <iostream> #include <fstream> #include <cstdlib> using namespace std; int main( ) { int a[10], b[10]; fstream iofile("f1.dat",ios::in|ios::out); if(!iofile) { cerr<<"open error!&quo