01. class ArrayDemo{
02. public static void main(String[] args) {
03. int[] arr = {89,34,270,17};
04.
05. for(int x = 0; x < arr.length; x += 1){
06. System.out.println("arr[" + x + "] = " + arr[x] + ";");
07. }
08. }
09. }
其中循环里面的x += 1 可以换成 x++。这2个方式的区别我懂,但是什么时候用哪一种好。原因。谢谢 |
|