toString

niraaah·2023년 4월 24일
1

혼자하는 스터디

목록 보기
15/25
class Car {
	public String name;
	public String color;
	
	Car(String name, String color) {
		this.name = name;
		this.color = color;
	}
	@Override
	public String toString() {
		return "the name is " + name + ", the color is " + color + ".";
	}
}

public class Operator{
	public static void main(String[] args) {
		Car myCar = new Car("dang", "blue");
		System.out.println(myCar.toString());
	}
}

>>결과:
the name is dang, the color is blue.
profile
코딩천재

0개의 댓글