InitiaValue
public class InitiaValue {
boolean t;
byte b;
short s;
int i;
long l;
float f;
double d;
char c;
Point point;
void initiaValues(){
System.out.println(t);
System.out.println(b);
System.out.println(s);
System.out.println(i);
System.out.println(l);
System.out.println(f);
System.out.println(d);
System.out.println(c);
System.out.println(point);
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
InitiaValue test=new InitiaValue();
test.initiaValues();
}
}