# Language/Java
명품 JAVA 프로그래밍 6장 1번
왕꿀꿀
2018. 7. 21. 16:58
명품 자바 Programming
Chapter6 Ex1
Q :
다음 main() 메소드의 실행 결과 "MyPoint(3,20)" 이 출력되도록 MyPoint 클래스를 작성하라.
1 2 3 4 | public static void main(String[] args) { MyPoint a = new MyPoint(3,20); System.out.println(a); } | cs |
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | package chap6ex; public class MyPoint { private int x, y; public MyPoint(int x, int y) { this.x = x; this.y = y; } public String toString() { return "MyPoint" + "(" + x + "," + y + ")"; } public static void main(String[] args) { MyPoint a = new MyPoint(3,20); System.out.println(a); } } | cs |
Key Point
알맞은 생성자 구현
유용하셨다면 공감 버튼 ↓ 눌러주세요!
728x90