일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mac terminal command
- #자바상속#자바이즈어#is~a
- #JAVASCRIPT
- html youtube
- html code
- border-box
- #1차원배열
- 하이퍼레저패브릭
- #2차원배열
- html5 new tag
- git flow
- docker example
- html multimedia
- #binary
- #성적관리프로그램
- hyperledger transaction
- relative path
- #bubbleSort
- #다차원포인터
- html object
- html charset
- #CallByAddress
- #3차원배열
- #C++ has~a
- html video
- #C++ 연산자함수오버로딩
- html id
- 토큰경제
- html plug-in
- #android activity
Archives
- Today
- Total
목록#map#맵 (1)
A sentimental robot
Map
import java.util.TreeMap; public class CTreeMap { public static void main(String[] args) { TreeMap tm = new TreeMap(); tm.put("C", 100); tm.put("A", 90); tm.put("B", 40); System.out.println(tm); } } TreeMap 정렬 출력 import java.util.Iterator; import java.util.TreeMap; public class CTreeMap2 { public static void main(String[] args) { TreeMap tm = new TreeMap(); for (int i = 25; i >= 0 ; i--) { char ..
Java
2017. 12. 29. 13:56