androidfor循環
發布時間: 2025-02-23 23:27:31
Ⅰ android 的shell中如何使用while和for,我需要實現100次循環dd命令。
android中的sh不支持「((",expr,這些,要用
i=$(($1-1))
#!/system/bin/sh
i=100
while [ i -gt 0 ]
do
echo $i
i=$((i-1))
done
下面是我自己實驗的一個只循環十次的結果
root@android:/ # i=10;while [ i -gt 0 ];do echo $i;i=$(($i-1));done
10
9
8
7
6
5
4
3
2
1
Ⅱ android中關於SimpleAdapter的問題 這裡面for循環中的循環條件File file:files是什麼意思
files是一個文件數組,File file:files的意思是每次循環都將數組中的文件對象賦給file這個變數,然後再在循環體中對這個變數進行操作。它相當於如下轉換形式:
File file;
for(int i=0;i<files.length;i++){
file = files[i];
……
}
熱點內容