์ด ๊ธ์ ์ํ์ฝ๋ฉ์ 'Java' ๊ฐ์ข๋ฅผ ๋ฐํ์ผ๋ก ์ ๋ฆฌํ ๋ด์ฉ์ ๋๋ค. ์์๊ณผ ์์ฑ์ package org.opentutorials.javatutorials.Inheritance.example4; public class ConstructorDemo { public static void main(String[] args) { ConstructorDemo c = new ConstructorDemo(); } } ์ ์ฝ๋๋ ์๋ฌ๊ฐ ๋ฐ์ํ์ง ์์ต๋๋ค. ConstructorDemo ๊ฐ์ฒด๋ฅผ ์์ฑํ ๋ ์๋์ผ๋ก ์์ฑ์๋ฅผ ๋ง๋ค์ด์ฃผ๊ธฐ ๋๋ฌธ์ ๋๋ค. package org.opentutorials.javatutorials.Inheritance.example4; public class ConstructorDemo { public C..