This

course 2021/JAVA

day11 - this, super

> this 자기자신 객체를 지정할 때 사용하는 키워드 this. - 동일 클래스 내의 멤버(멤버변수, 메소드) 지정 this() - 생성자 내에서 자신의 다른 생성자 호출 public class Person { String name; //멤버변수 int age; Person(String name, int age) { //생성자, 매개변수 name, age가 위의 멤버변수 이름과 같음 name = name; //앞의 name이 멤버변수가 아닌 가까이 있는 매개변수로 인식됨 (이름이 같기 때문) age = age; } } //this. 를 사용하여 수정한 코드 public class Person { String name; int age; Person(String name, int age) { this.na..

코딩하는토끼
'This' 태그의 글 목록