欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

关于C++静态数据成员的实现讲解

时间:2021-02-05 09:34:28|栏目:C代码|点击:

静态数据成员是在一个类中用关键字static声明的数据成员。在C++中,一般使用静态成员来代替C语言的全局变量,以达到数据共享。C和C++的全局变量有一定的局限性,可以任意被修改,也容易和其它的变量名冲突,故在C++中,一般不使用全局变量。

静态数据成员必须进行初始化,初始化应在类体外进行,静态数据成员也可以引用,但不能引用私有数据部分。

接下来看一个例子:

#include <iostream>
#include <cstring>
using namespace std ; 
class Student 
{
 private :
 //静态成员变量 
 static int age ;
 static float score ; 
 string name ;
 public :
 static int x , y ;
 //构造函数 
 Student();
 //析构函数 
 ~Student(); 
 //设置信息 
 int setstuinfo(int age , float score , string name);
 //打印信息 
 int Printstuinfo();
};
//静态成员必须初始化 
int Student::age = 24 ; 
float Student::score = 86.6 ; 
int Student::x = 100 ; 
int Student::y = 200 ;
Student::Student()
{
 this->name = "YYX" ;
 cout << this->name << endl ;
 cout << this->age << endl ; 
 cout << this->score << endl ; 
}
Student::~Student()
{
 this->name = "NULL";
 cout << this->name << endl ;
}
int Student::setstuinfo(int age , float score , string name)
{
 this->age = age ; 
 this->score = score ; 
 this->name = name ;
}
int Student::Printstuinfo()
{
 cout << this->name << endl ;
 cout << this->age << endl ; 
 cout << this->score << endl ; 
}
int main(void)
{
 Student stu1 ;
 //指针 
 Student *p ;
 p = &stu1 ;
 p->setstuinfo(25,96,"XXX");
 p->Printstuinfo();
 //静态成员的引用---->不可以引用私有成员
 cout << p->x << endl ; 
 cout << p->y << endl ;
 Student::x = 80 ;
 Student::y = 90 ;
 cout << p->x << endl ; 
 cout << p->y << endl ;
 return 0 ;
}

运行结果:

YYX
24 
86.6
XXX
25
96
100
200
80
90
NULL

总结

上一篇:C++调用Python基础功能实例详解

栏    目:C代码

下一篇:C++实现归并排序算法

本文标题:关于C++静态数据成员的实现讲解

本文地址:http://www.codeinn.net/misctech/57465.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有