程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> c++和c結構體總結

c++和c結構體總結

編輯:C++入門知識

C++中結構體的成員函數
      我們知道在C語言中,結構體中只能定義變量,而在c++中,我們的結構體也可以定義函數,而且還有成員函數。請看下面的程序:

 #include
int main()
{
struct student;   //定義一個類
struct student
{
   int score;
   int id;
   student(){}
   inline student(int _score,int _id):score(_score),id(_id){}
   void Student()
   {
    printf("%d,%d\n",score,id);
   }
};
student s(1,2);
s.Student();
struct name
{
   int age;
   int i;
   name()      //可以被自動調用
   {
    age=0;
    i=2;
   }
   void n()
   {
    printf("%d,%d\n",age,i);
   }
}
name;
name.n();
return 0;
}
程序運行結果:
1,2
0,2

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