본문 바로가기

자바 자식클래스2

[Java 자바 기초] 자바 상속, 부모 클래스 super class, 자식 클래스 sub class, 지역변수, 전역변수 저장&출력 모든 설명은 주석으로 확인할 수 있어요. 하나씩 따라해 보세요. ^^ package javaEx; //부모 클래스의 변수에 매개변수 저장하기 class Parent{ int one, two; public Parent() {} public Parent(int one, int two) { this.one = one;//this.전역변수 = 본 함수의 매개변수 this.two = two; } }//class Parent end class Child extends Parent{ int three; public Child() {} //부모클래스 변수 저장 방법 1 public Child(int one, int two, int three) { super.one = one;//super.부모클래스변수 = 매개변수; .. 2020. 8. 31.
[Java 자바 기초] 자바 상속, 부모 클래스 super class, 자식 클래스 sub class, 생성자함수 constructor 호출, 지역변수, 전역변수 모든 설명은 주석으로 확인할 수 있어요. 하나씩 따라해 보세요. ^^ package javaEx; /* 부모 클래스 superclass 자식 클래스 subclass - super자식 클래스에서 부모 클래스의 멤버변수에 접근할 때 사용 - super()자식 클래스의 생성자 함수가 부모 클래스의 생성자 함수를 호출할 때 참고 - this 멤버변수와 일반변수 구분 - this() 생성자함수 간의 호출 */ //부모 클래스 class School{ String name = "학교"; public School() { System.out.println("School()"); } } //자식 클래스 class MiddleSchool extends School{ String name = "중학교"; public Mid.. 2020. 8. 31.