C 大學基礎教程 7 5將陣列傳遞給函式

2021-09-02 03:00:31 字數 572 閱讀 9088

//_7_5_main.cpp

//傳遞陣列和單個陣列元素到函式中

//傳遞整個陣列時是引用傳遞,對引用的任何修改都會修改原陣列,

//傳遞某個陣列元素時是直接傳值呼叫,,,,

#include #include using namespace std;

void modifyarray(int ,int);//傳遞整個陣列

void modifyelement(int);//傳遞陣列元素

int main()

; //列印沒有引用之前的陣列

cout << "effects of passing entire array by reference:"

<< "\nthe values of the original array are :" << endl;

for(int k=0;k>cout");

return 0;

}void modifyarray(int b,int sizeofarray)

void modifyelement(int e)

C 大學基礎教程 11 10

ifndef string h define string h include using namespace std class string bool operator bool operator const string right const 寫內聯函式的時候忘記寫引數,bool opera...

C 大學基礎教程筆記 一

1.修改const物件的任何企圖在編譯時就會被發現,而不是等到執行期才導致錯誤。2.將變數和物件宣告為const可以提高效能,編譯器可以對常量提供某些相對變數來說不能提供的優化。3.對於const物件,c 編譯器不允許進行成員函式的呼叫,除非成員函式本身也宣告為const。4.要將函式指定為cons...

C 大學基礎教程 7 4使用陣列的範例

7 4 main 1.cpp include include using namespace std int main for int j 0 j 10 j cout b j setw 9 b j endl cout endl 用常量變數指定乙個陣列大小,用計算結果設定陣列元素 const int ...