类的组成
- 属性
在类中通过成员变量来体现。 - 行为
在类中通过成员方法来体现。
类如何定义
public class 类名称{
- 成员属性
- 成员方法
}
例如一个手机类
点击查看代码
public class Phone {
//成员属性
String brand;//手机品牌
double price;//手机价格
//成员方法
public void call(){
System.out.println("打电话");
}
public void texting(){
System.out.println("发短信");
}
public static void main(String[] args) {
Phone ph = new Phone();
ph.brand="华为";
ph.price=4999;
System.out.println(ph.brand+"手机的价格是"+ph.price);
ph.call();
ph.texting();
}
}