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;
}
}