[JAVA] this와 this()의 정의와 예제
this - 객체 즉, 자기 자신을 나타냅니다. - 이러한 this는 객체의 주소를 가리키고 있습니다. package com.company; public class Car { private String modelName; private int modelYear; private String color; private int maxSpeed; private int currentSpeed; public Car(String modelName, int modelYear, String color, int maxSpeed, int currentSpeed) { this.modelName = modelName; this.modelYear = modelYear; this.color = color; this.maxSpeed..