일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 일상회피
- 보안
- jvm
- Transition
- 심리여행
- opcode
- static
- 회피
- Navigation Component
- javap
- Recylcer
- throws
- bytecode 분석
- bytecode
- 보안취약점
- Interface
- ㅇ
- 일상탈출
- IMPLEMENT
- 여행계획
- 버킷리스트
- HelloWorld
- 치유
- 여행
- 심리학
- extends
- 취약점
- Shared Elements
- Android
- abstract
Archives
- Today
- Total
목록Development language/odds and ends (1)
패스트터틀
for,while, foreach(초간단)(Java)
1. 반복문 뭐가 옳은걸까? for(;;) == while(true) == while(1) 무한반복(차이없음 개발자마다 쓰는거 달름) 2. 배열 반복문 편하게 쓰는법은 뭐가 있을까? 1. for(int = i ; i < 10 ; i++){ 조건반복 내용 } 2. --------------------------------------------------------- 배열 가져다 넣기 int arr[] = new int[]{10,20,30,40,50,60,70}; for( int num : arr ){ System.out.println(num); // arr안에 있는거 num에다가 쳐 넣어버리고 순서대로 출력 } 출력결과 : 10203040506070 이거를흔히 for-each 문이라고 함 3. do~whi..
Development language/odds and ends
2019. 11. 10. 15:42