JAVA
JAVA | this() 인스턴스 복제를 위한 생성자 만들기
package kr.co.kihd.constructor3; public class Car { String color; //색상 String gearType; //변속기 종류 int door; //문 개수 //기본생성자 public Car() { //직접적으로 인스턴스 멤버변수를 초기화 //this.color = "노랑"; //this.gearType = "수동"; //this.door = 4; //같은 클래스내에 있는 매개변수 3개가 있는 생성자를 호출하는 구문 this("검정","수동",5); } /* * this : 참조변수와 같은 역할, * 매개변수와 멤버변수를 구분짖는데 사용. * (반드시 this사용해서 명확하게 프로그램 실행되도록 한다.) */ public Car(String color, St..
2020. 10. 30. 10:30