定义类的补充注意事项
public class 类名{
1.成员变量(代表属性)
2.成员方法(代表行为)
}
类名首字母要大写
一个Java文件只有一个类名能被public修饰
public class test4{
public static void main(String[] args){
Girl haha=new Girl();
haha.name="与";
haha.love=false;
haha.height=160.3;
haha.mor();
System.out.println(haha.name);
System.out.println(haha.love);
System.out.println(haha.height);
}
}
class Girl{
String name;
boolean love;
double height;
void mor(){
System.out.println("早安");
}
}