각 순환 에 대한 자바 독서 노트(13)
4752 단어 자바
실례:
1 public class TestArray{
2 public static void main(String[]args){
3 double[] myList={1.9,2.9,3.4,3.5};
4
5 //
6 for (double element: myList){
7 System.out.println(element);
8 }
9 }
10 }
11
12 /* :
13 1.9
14 2.9
15 3.4
16 3.5
17 */
배열 은 매개 변수 로 전달 할 수 있 습 니 다.
1 // int :
2 public static void printArray(int[] array){
3 for(int i=0; i){
4 System.out.print(array[i]+" ");
5 }
6 }
7
8
9
10 // printArray 3、1、2、6、4 2.
11 printArray(new int[]}3,1,2,6,4,2});
12
13
14
15 // ( result )
16 public static int[] reverse(int[] list){
17 int[] result =new int[list.length];
18 for (int i=0, j=result.length-1; i){
19 result[j]=list[i];
20 }
21 return result;
22 }
다음으로 전송:https://www.cnblogs.com/cheese320/p/8110097.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.