-
Power JAVA 7장 ) 클래스와 객체 - Programming_4IT/솔루션) Power Java 2019. 4. 23. 07:39
<2016. 10. 3. 18:49>
Power JAVA 7장 ) 클래스와 객체 - Programming_4
/* * 영화 movie 클래스를 정의하여 보자. * movie 클래스는 영화 제목, 평점, 감독, 발표된 연도 등의 필드를 가진다. * 영화의 모든 정보를 화면에 출력하는 print()라는 메소드를 구현하라 * movie 클래스를 작성하고 객체를 생성하여서 테스트하여라. */ class Movie { String name = "곡성"; int score = 98; String director = "잘모르겠음"; int release_y = 2016; void print() { System.out.printf("제목 : %s\n",name); System.out.printf("평점 : %d\n",score); System.out.printf("감독 : %s\n",director); System.out.printf("출시년도 : %d\n",release_y); } } public class programming_4 { public static void main(String[] args) { Movie mymovie = new Movie(); mymovie.print(); } }
'IT > 솔루션) Power Java' 카테고리의 다른 글
Power JAVA 7장 ) 클래스와 객체 - Programming_6 (0) 2019.04.23 Power JAVA 7장 ) 클래스와 객체 - Programming_5 (0) 2019.04.23 Power JAVA 7장 ) 클래스와 객체 - Programming_2 (0) 2019.04.23 Power JAVA 7장 ) 클래스와 객체 - Programming_1 (0) 2019.04.23 Power JAVA 7장 ) 클래스와 객체 - LAB (0) 2019.04.23