일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Jenkins
- 제너릭
- Short
- 싱글톤
- dependency
- 빌드
- 스프링
- 인텔리제이
- 제네릭
- 언박싱
- maven
- 싱글턴
- boxing
- Scanner
- 무한
- 콜렉션
- 루프
- bootstrap
- suvlet
- https://start.spring.io
- 클래스
- 메소드
- Java
- 자동형변환
- wrapper
- 내장객체
- 박싱
- unboxing
- start.spring.io
- 컬렉션
Archives
- Today
- Total
Developer Gonie
[2주차] 39. 객체로 배열 만들기 본문
원래 정수의 배열 만들던 방식 + 객체생성하는 방식을 고려하면 쉽게 기억할 수 있다.
코드
class SeasonBook {
String title;
String name;
int price;
SeasonBook() {
this.title = "JSP";
this.name = "써니";
this.price = 1000;
}
SeasonBook(String title, int price) {
this.title = title;
this.name = "임효상";
this.price = price;
}
SeasonBook(String title, String name, int price) {
this.title = title;
this.name = name;
this.price = price;
}
void show() {
System.out.println(title);
System.out.println(name);
System.out.println(price);
}
}
public class Ex05_18_객체배열 {
public static void main(String[] args) {
// SeasonBook b1 = new SeasonBook();
SeasonBook[] bk_arr1 = { new SeasonBook(), new SeasonBook("HTML", "아이유", 10000), new SeasonBook("DB", 20000) };
SeasonBook[] bk_arr2 = new SeasonBook[3];
bk_arr2[0] = new SeasonBook();
bk_arr2[1] = new SeasonBook("CSS", "최광희", 30000);
bk_arr2[2] = new SeasonBook("C#", 40000);
// 반복문으로 추력
for (int i = 0; i < bk_arr1.length; i++) {
bk_arr1[i].show();
System.out.println();
}
// 반복문으로 추력
for (int i = 0; i < bk_arr2.length; i++) {
bk_arr2[i].show();
System.out.println();
}
}
}
실행결과
김세은
50
70
수지
0
0
수영
60
80
'K-DigitalTraining 강의 > 1. Java' 카테고리의 다른 글
[2주차] 41. 클래스 상속 및 생성자의 'super', 메서드의 'super' (0) | 2022.05.25 |
---|---|
[2주차] 40. 객체 생성시 호출되는 '생성자' (0) | 2022.05.25 |
[2주차] 38. 'this' 멤버변수 이름과 매개변수 이름이 같을 때 사용해야 하는 것 (0) | 2022.05.24 |
[2주차] 37. 클래스 내에 setter, getter 멤버함수가 필요한 경우(private 변수) (0) | 2022.05.24 |
[2주차] 36. 메서드 오버라이딩(feat. 상속)* (0) | 2022.05.24 |
Comments