day12_TestBlock

육희영·2021년 10월 27일
0
package com.java1.day12;

public class TestBlock {
	public static void main(String[] args) {

	}
}

class Car1 {
	int count;
	int serialNo;
	String color;

	String gearType;
	{
		count++;
		serialNo = count;
	}

	Car1() {
		color = "white";
		gearType = "Auto";
	}

	Car1(String color, String gearType) {
		this.color = color;
		this.gearType = gearType;
	}
}

0개의 댓글

Powered by GraphCDN, the GraphQL CDN