일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #bubbleSort
- 하이퍼레저패브릭
- html code
- html plug-in
- #자바상속#자바이즈어#is~a
- #다차원포인터
- html multimedia
- #C++ has~a
- #JAVASCRIPT
- #C++ 연산자함수오버로딩
- html youtube
- border-box
- #1차원배열
- 토큰경제
- html object
- hyperledger transaction
- html5 new tag
- git flow
- #android activity
- mac terminal command
- #CallByAddress
- #3차원배열
- html charset
- html id
- #성적관리프로그램
- #binary
- #2차원배열
- html video
- relative path
- docker example
- Today
- Total
A sentimental robot
CRUD, LinkedList 본문
import java.util.Iterator;
import java.util.LinkedList;
public class Day2 {
public static void main(String args[]) {
LinkedList<Integer> list = new LinkedList<Integer>();
// 첫번째 출력 방식
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();
// 네번째 출력 방식
Iterator<Integer> it = list.iterator();
while(it.hasNext()) {
System.out.print(it.next() + " ");
}
}
}
import java.util.LinkedList;
class Apple {
int count;
int age;
Apple(int count, int age) {
this.count = count;
this.age = age;
}
void show() {
System.out.println(count + " " + age);
}
}
public class Day2 {
public static void main(String args[]) {
LinkedList<Apple> list = new LinkedList<Apple>();
Apple a = new Apple(10, 20);
list.add(a);
Apple b = new Apple(30, 40);
list.add(b);
list.add(new Apple(40, 50));
for (Apple apple : list) {
apple.show();
}
}
}
import java.util.LinkedList;
class Apple {
int count;
int age;
Apple(int count, int age) {
this.count = count;
this.age = age;
}
void show() {
System.out.println(count + " " + age);
}
}
public class Day2 {
public static void main(String args[]) {
LinkedList<Apple> list = new LinkedList<Apple>();
for (int i = 0; i < 10; i++) {
list.add(new Apple(i, i * 10));
}
System.out.println("-------after create-------");
for (Apple apple : list) {
apple.show();
}
System.out.println("-------after update-------");
list.set(4, new Apple(99, 990));
for (Apple apple : list)
apple.show();
System.out.println("-------after delete-------");
list.remove(4); // index 4가 뭔 지 알고 삭제? 무의미한 코드
for (Apple apple : list)
apple.show();
// age가 50을 가진 Apple 삭제하고 싶어! 검색 후 삭제
for (int i = 0; i < list.size(); i++) {
Apple apple = list.get(i);
if (apple.age == 50) {
list.remove(i);
break;
}
}
// count가 1의 배수인 Apple만 삭제하고 싶어!
System.out.println("-------delete-----------");
for (int i = 0; i < list.size();) {
Apple apple = list.get(i);
if ((apple.count % 1) == 0) {
list.remove(i);
} else i++;
}
for (Apple apple : list)
apple.show();
}
}
'Java' 카테고리의 다른 글
자바에서 대표적인 예외 (0) | 2018.01.09 |
---|---|
우주에서 랜덤하게 살아남기 (0) | 2018.01.08 |
상속관계를 통한 다형성과 업캐스팅 (0) | 2018.01.05 |
익명클래스, anonymous class (0) | 2018.01.04 |
중첩 인터페이스 (0) | 2018.01.04 |