前言
變量:就是給內(nèi)存地址取一個(gè)別名价淌;
1. 概述
在java中的for循環(huán)與c中的for循環(huán)寫(xiě)法稍微有點(diǎn)區(qū)別,代碼如下:
// 數(shù)組與數(shù)組指針
void main(){
// 定義一個(gè)數(shù)組
int arr[] = {1,2,3,4};
// 遍歷數(shù)組,這種寫(xiě)法用到Linux上,可能會(huì)有問(wèn)題
for (int i = 0; i < 4; i++){
printf("%d\n" , arr[i]);
}
// 第二種:for循環(huán)在c與c++中的正確寫(xiě)法,以后在c和c++中寫(xiě)for循環(huán)用下邊這種方式就可以
int i = 0;
for (; i < 4;i++){
printf("%d\n", arr[i]);
}
getchar();
}
從上邊代碼可以看出:
在c或c++中赦役,如果需要使用for循環(huán)的話,直接用第二種栅炒,不要使用第一種掂摔,第一種可能會(huì)由于編譯器或者開(kāi)發(fā)工具或者操作系統(tǒng)等各種原因可能會(huì)有問(wèn)題术羔。