java中,定义一个类之后,需要创建该类的对象才能使用这个类
创建对象的具体格式是
类名 对象名=null
对象名=new 类名
这两步可以合并为一步
类名 对象名= new 类名
class Student{String name;void read() {System.out.println("大家好,我是"+name);}
}
public class Duixiang {public static void main(String[] args) {// 创建对象Student stu1=new Student();Student stu2=new Student();stu1.name="小明";stu1.read();stu2.name="李华";stu2.read();}}
这段代码里,先创建了一个叫Student的类
创建两个对象
Student stu1=new Student()
其中Student是类名,stu1是对象名