💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 如何创建对象 >[success]类 引用 = new 类 ( ); ====> 类 引用 = 对象; ``` public static void main(String[] args) { //创建学生对象 Student student=new Student(); //通过引用操作对象的属性和行为 student.name="张三"; student.age=22; student.gender="male"; student.stuNo="20155121"; student.study(); student.playGame(); } ``` * 只要有new 创建的对象,就会开辟一个新的储存空间