일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바 야구게임
- 상속예제
- 로또
- Validations
- 전자정부
- 업캐스팅
- 자바
- 형변환
- 상속
- 페이징
- jquery
- 다형성
- Login with OAuth Authentication
- 전체
- 가변인자
- Random
- angular2
- 다운캐스팅
- while
- 추상클래스
- IBatis procedure
- 이클립스
- 25가지 효율적인 sql작성법
- 단축키
- Full text
- 야구게임
- 전체텍스트
- full text indexing
- 스프링
Archives
- Today
- Total
nalaolla
ArrayAndMethod - 배열 기본문법 본문
728x90
반응형
배열 기본 문법
- package test.com;
- public class ArrayAndMethod {
- public static int[] addAllArray(int[] ar, int addVal) {
- for (int i = 0; i < ar.length; i++) {
- ar[i] += addVal;
- }
- return ar;
- }
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int[] arr = {1,2,3,4,5};
- int[] ref;
- ref = addAllArray(arr, 7);
- if(arr == ref) {
- System.out.println("동일배열구조");
- } else {
- System.out.println("다른배열구조");
- }
- for (int i = 0; i < ref.length; i++) {
- System.out.println(ref[i]);
- }
- }
- }
728x90
반응형
'JAVA > 4. Array' 카테고리의 다른 글
ReculFactorial 예제 (0) | 2016.06.22 |
---|---|
InfRecul 예제 (0) | 2016.06.22 |
과일판매 예제 (0) | 2016.06.22 |
강화된 for문 (0) | 2016.06.22 |
Constructor2 생성자 이용 (0) | 2016.06.22 |