Jeon Soo Min
1.Super๋? ์์ ํด๋์ค์์ ๋ถ๋ชจ ํด๋์ค์ ๋งค์๋๋ฅผ ๋ถ๋ถ์ ์ผ๋ก ์ฌ์ฉ ํด์ผ ํ๋ ๊ฒฝ์ฐ๊ฐ ์์ ๊ฒ์ด๋ค. ์ง๊ธ๊น์ง ๋ค์ด์จ ์นด๋ฉ๋ผ ํด๋์ค๋ฅผ ์๋ก ๋ค์ด๋ณด์. **์ฌ์ ์ฐธ๊ณ ์ฌํญ (๋ถ๋ชจ ํด๋์ค์ ์์ํด๋์ค)** // ๋ถ๋ชจ ํด๋์ค public class Camera { public String name; public Camera() { this.name = "์นด๋ฉ๋ผ" } public void takePicture() { // ์ฌ์ง ์ดฌ์ System.out.println(this.name + ": ์ฌ์ง์ ์ดฌ์ํฉ๋๋ค."); } public void recordVideo() { // ๋์์ ๋
นํ System.out.println(this.name + ": ๋์์์ ๋
นํํฉ๋๋ค."); } public void showM..
2023.01.28
Language/Java