BankAccount ref1 = new BankAccount();
BankAccount ref2 = ref1;
TV myTV = new TV("LG", 2017, 32);
myTV.show();
//LG 에서 만든 2017년형 32인치 TV
class TV {
String company;
int year, inch;
TV(String company, int year, int inch) {
this.company = company;
this.year = year;
this.inch = inch;
}
void show() {
System.out.println(company + "에서 만든 " + year + "년형 " + inch + "인치 TV");
}
}
노래 한 곡을 나타내는 Song 클래스를 작성하라. Song은 다음 필드로 구성된다.
또한 Song 클래스에 다음 생성자와 메소드를 작성하라.
1978년 스웨덴국적의 ABBA가 부른 Dancing Queen
class Song{
int year;
String title, artist, country;
Song(){}
Song(int year, String country, String artist, String title){
this.title = title;
this.artist = artist;
this.country = country;
this.year = year;
}
void show() {
System.out.println(year+ "년 "+ country+"국적의 " + artist + "가 부른 " + title);
}
}