一、类与对象定义
类:类是具有相同属性和行为的一组对象的集合。
对象:把符合某关系类标准的一个具体事物称为对象。
二、类与对象
类是抽象的,对象是具体的。
类中仅说明对象应具有什么属性和行为,但没有具体的数值,对象是具有明确定义的类的实例。
public Class Student{
int id;
int age;
String name;
String address;
void sayHello() {
System.out.println("hello");
}
}
三、使用
声明对象: 类名 (空格)对象名;
创建对象:对象名 = new 类名();
Student stu;
stu = new Student();
合:类名 对象名 = new 类名();
Student stu = new Student();
访问对象属性:对象名.属性名
stu.id = 1;
stu.age = 18;
stu.name = "花花";
stu.address = "陕西西安"
调用对象方法:对象名.方法名
stu.sayHello();
整体代码
public Class Student{
int id;
int age;
String name;
String address;
void sayHello() {
System.out.println("hello");
}
}
public Class TestStudent{
public static void main(String[] args) {
stu.id = 1;
stu.age = 18;
stu.name = "花花";
stu.address = "陕西西安"
stu.sayHello();
}
}
运行结果
|