일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 네이버 클라우드 플랫폼
- 니돈내먹
- 음료같은녹즙
- webstorm
- React Native
- Emmet
- code .
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- GitLab Mirroring
- Path Alias
- GitHub 미러링
- visual studio code cli
- 초대장
- code 설치
- 티스토리초대
- 유니옥션
- GitLab미러링
- 실행시간 측정
- gitlab 연동
- react native #gradle
- GitHub Mirroring
- 프리티어
- 티스토리 초대장/ 티스토리초대
- currentTimeMillis
- 티스토리 초대장
- visual studio code
- code 세팅
- '티스토리 초대장/ 티스토리초대'
- settings sync
- eslint-import-resolver-typescript
Archives
- Today
- Total
방치하기
자바 콜바이 벨류 & 콜바이 리퍼런스 본문
반응형
class Ph { /*콜바이 벨류 public static void swap(int a, int b) { int memory=a; a=b; b=memory; System.out.printf("%d %d",a,b); } public static void main(String[] args) { int num=Integer.parseInt(args[0]); int num2=Integer.parseInt(args[1]); swap(num,num2); */ //콜바이 레퍼런스 public static void swArr(int [] ar) { int w=ar[0]; ar[0]=ar[1]; ar[1]=w; System.out.printf("%d %d\n",ar[0],ar[1]); } public static void main(String[] args) { int [] num={2,3}; swArr(num); System.out.printf("%d %d",num[0],num[1]); } }
반응형
'홍익대 Java > 수업' 카테고리의 다른 글
Set & Get ,Swap 클래스 이용 (0) | 2009.07.17 |
---|---|
클래스와 객체 (0) | 2009.07.17 |
배열 정렬 메소드 와 지연 그리고 맨앞으로 이동 (0) | 2009.07.16 |
성적 인수를 1차원으로 받아서 2차원으로 저장후 행 렬별 계산 (0) | 2009.07.16 |
String 에서 쓸만 한것들 모음 (0) | 2009.07.16 |
Comments