c++学习笔记之静态成员函数
生活随笔
收集整理的這篇文章主要介紹了
c++学习笔记之静态成员函数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
靜態成員函數設置的目的是為程序中一些變量保值而設定的
定義靜態成員函數需要注意的幾點
(1)靜態成員函數主要用來訪問靜態數據成員,而不訪問非靜態成員
(2)靜態成員函數是類的一部分而不是對象的一部分。
統計學生的平均成績代碼
#include<iostream> using namespace std; class student {public:student(int n,int a,float s):num(n),age(a),score(s){}//定義構造函數void total();static float average();//聲明靜態成員函數private:int num;int age;float score;static float sum;static int count;} ;void student::total(){sum+=score;count ++;}float student::average(){return (sum/count);}float student::sum=0;int student::count=0;int main(){student stud[3]={student(1001,18,70),student(1002,19,78),student(1005,20,98)};int n;cout<<"please input the number of students";cin>>n;for(int i=0;i<n;i++)stud[i].total();cout<<"the average score of"<<n<<"student is"<<student::average()<<endl;}?
總結
以上是生活随笔為你收集整理的c++学习笔记之静态成员函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 对象的赋值和复制
- 下一篇: ddr4 lpddr4区别_i3 101