程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> c++之靜態成員的初始化實例介紹

c++之靜態成員的初始化實例介紹

編輯:C++入門知識

  1. #pragma once
  2. class CStudent
  3. {
  4. public:
  5.     CStudent(void);
  6.     CStudent(int age,int score);
  7. public:
  8.     ~CStudent(void);
  9. public:
  10.     int age;
  11.     int score;
  12.     static int totalScore;
  13. };
  14. #include "StdAfx.h"
  15. #include "Student.h"
  16. CStudent::CStudent(void)
  17. {
  18. }
  19. CStudent::~CStudent(void)
  20. {
  21. }
  22. CStudent::CStudent(int age, int score)
  23. {
  24.     this->age=age;
  25.     this->score=score;
  26.     totalScore =score;
  27. }
  28. int CStudent::totalScore=0;


注意:在類外初始化 這和C#不同

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved