类
1.类的重要性:
所有java程序都是以类class为组织单元的;
2.什么是类?
类是模子,确定对象的属性和方法;
3.类的组成:
属性和方法;
4.定义一个类的步骤:
- 定义类名;//public class 类名{ }
- 定义类的属性 (定义类有什么) //属性类型与属性名;
- 定义类的方法;(定义类能做什么)
public class Telphone{
//定义类的属性--有什么
float screen;
float cpu;
float mem;
//定义方法
void call(){
System.out.println("能打电话");
}
void sendMessage(){
System.out.print("能发短信");
}
}