首頁 > 後端開發 > C++ > 主體

為什麼C將陣列參數視為指標?

王林
發布: 2023-09-08 13:17:02
轉載
1405 人瀏覽過

為什麼C將陣列參數視為指標?

C將陣列參數視為指針,因為這樣做更省時且更有效率。儘管我們可以將陣列的每個元素的位址作為參數傳遞給函數,但這樣做會更耗時。所以最好將第一個元素的基底位址傳遞給函數,例如:

void fun(int a[]) {
…
}
void fun(int *a) { //more efficient.
…..
}
登入後複製

Here is a sample code in C:

#include

void display1(int a[]) //printing the array content
{
   int i;
   printf("</p><p>Current content of the array is: </p><p>");
   for(i = 0; i < 5; i++)
      printf(" %d",a[i]);
}

void display2(int *a) //printing the array content
{
   int i;
   printf("</p><p>Current content of the array is: </p><p>");
   for(i = 0; i < 5; i++)
      printf(" %d",*(a+i));
}
int main()
{
   int a[5] = {4, 2, 7, 9, 6}; //initialization of array elements

   display1(a);
   display2(a);
   return 0;
}
登入後複製

輸出

#
Current content of the array is:
4 2 7 9 6
Current content of the array is:
4 2 7 9 6
登入後複製

以上是為什麼C將陣列參數視為指標?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!