類的包含 簡單程式細節總結

2021-08-19 08:52:14 字數 425 閱讀 1766

這是乙個簡單的類的包含的資料初始化

#includeusing namespace std;

class a

//用了初始化列表的形式,注意書寫格式

int a;//資料定義成了公有(1)

};class b

//用初始化列表初始化a的資料,aa是物件的名字(2)

void out()

;class b

//用初始化列表初始化a的資料,aa是物件的名字(2)

void out()

,student 是類型別)

只有建構函式可以用初始化列表 普通函式不行:

constructor initializer lists are only allowed on constructor definitions

fork 函式的簡單程式

include include 注 自定義的標頭檔案 int main int argc,char argv int main int argc,char argv else 執行結束之後,系統1號程序進行 printf c n return 0 int main int argc,char arg...

計算24點的簡單程式

近來家庭作業裡有24點的題目,為了找出所有可能的組合,就寫了個簡單的程式 1.執行程式 2.輸入4個整數,比如 3 3 7 8 3.顯示所有可能的組合 include assert.h include double operate double num1,double num2,int op els...

快速排序的實現 簡單程式

快速排序的平均時間複雜度為o n logn 在所有內部排序演算法中最高,在大部分情況下總是最好的。今天用乙個簡單的程式實現一下,是用的遞迴方法。第一次寫部落格,萬事開頭難。quiksort2.cpp 定義控制台應用程式的入口點。include stdafx.h include iostream us...