일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 음료같은녹즙
- visual studio code
- '티스토리 초대장/ 티스토리초대'
- 프리티어
- GitHub Mirroring
- GitLab Mirroring
- code .
- gitlab 연동
- 티스토리 초대장
- 니돈내먹
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 티스토리초대
- code 세팅
- eslint-import-resolver-typescript
- webstorm
- GitHub 미러링
- 티스토리 초대장/ 티스토리초대
- Path Alias
- Emmet
- React Native
- visual studio code cli
- 유니옥션
- 초대장
- currentTimeMillis
- code 설치
- GitLab미러링
- 실행시간 측정
- react native #gradle
- 네이버 클라우드 플랫폼
- settings sync
Archives
- Today
- Total
목록전체 글 (105)
방치하기
자바 콜바이 벨류 & 콜바이 리퍼런스
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 vo..
홍익대 Java/수업
2009. 7. 16. 17:29
배열 정렬 메소드 와 지연 그리고 맨앞으로 이동
import java.util.*; class Ph { public static void main(String[] args) throws Exception { int [] numArr={1,5,3,2,7}; Arrays.sort(numArr); for (int i : numArr){ System.out.print(i+" "); Thread.sleep(500); System.out.print("\r"); Thread.sleep(500); System.out.print("잠시만 기달려"); Thread.sleep(500); System.out.print("\r"); } } }
홍익대 Java/수업
2009. 7. 16. 16:45