일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- hyperledger transaction
- #다차원포인터
- #C++ 연산자함수오버로딩
- mac terminal command
- git flow
- html multimedia
- #android activity
- #2차원배열
- html id
- border-box
- relative path
- #C++ has~a
- #binary
- docker example
- #bubbleSort
- html youtube
- #JAVASCRIPT
- html video
- html plug-in
- 토큰경제
- html charset
- 하이퍼레저패브릭
- html5 new tag
- #CallByAddress
- #1차원배열
- #3차원배열
- #성적관리프로그램
- html object
- html code
- #자바상속#자바이즈어#is~a
Archives
- Today
- Total
목록#자바CRUD (1)
A sentimental robot
CRUD, LinkedList
import java.util.Iterator; import java.util.LinkedList; public class Day2 { public static void main(String args[]) { LinkedList list = new LinkedList(); // 첫번째 출력 방식 for (int i = 0; i < 10; i++) { list.add(i); System.out.println(list.get(i)); } // 두번째 출력 방식 System.out.println(list); // 배열 형식으로 전부 출력 // 세번째 출력 방식 for (int a : list) System.out.print(a + " "); System.out.println(); // 네번째 출력 방식 Ite..
Java
2018. 1. 8. 11:33