Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 7/Car3.java Lines 34 | 610 바이트
다운로드

                        package week7;

public class Car3 {
	String model;
	String color;
	int maxSpeed;
	
	//생성자 오버로딩~
	Car3() {
		//this.model = "Granzer";
		//this.color = "White";
		//this.maxSpeed = 280;
		this("Granzer", "White", 280);
	}
	
	Car3(String model){
		//this.model = model;
		this(model, "white", 260);
	}
	
	Car3(String model, String color){
		//this.model = model;
		//this.color = color;
		//this(maxSpeed);
		this(model, color, 350);
	}
	
	Car3(String model, String color, int maxSpeed){
		this.model = model;
		this.color = color;
		this.maxSpeed = maxSpeed;
	}
}