Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter01 : inheritance 본문

JAVA/chapter13_inheritance_annotation

chapter01 : inheritance

GAWON 2023. 5. 26. 18:35
package org.joonzis.ex;

// 부모 클래스
class Parent{
	int number;
	void doParent() {
		System.out.println("doParent() 호출");
	}
}
// 자식 클래스
class Child extends Parent{
	void doChild() {
		System.out.println("doChild() 호출");
	}
}
public class Ex01_Inheritance {
	public static void main(String[] args) {
		
		Child child = new Child();
		
		child.number = 10;
		System.out.println(child.number);
		
		child.doParent();
		child.doChild();
		
	}
}

'JAVA > chapter13_inheritance_annotation' 카테고리의 다른 글

Test . inheritance  (0) 2023.05.26
chapter05 : constructor  (0) 2023.05.26
chapter04 : constructor  (0) 2023.05.26
chapter03 : inheritance  (0) 2023.05.26
chapter02 : inheritance  (0) 2023.05.26