luohzzz

导航

2021年4月29日 #

静态、非静态

摘要: public class oopDemoStufent2 { //static是一个静态方法 public static void say1(){ System.out.println("学生说好"); }} public class oopDemoStudent { //没有static就是非静态 阅读全文

posted @ 2021-04-29 17:53 luohzzz 阅读(23) 评论(0) 推荐(0) 编辑

类、对象(oop)

摘要: ```javapublic class oopDemo6Student { String name; int age; public void study(){ System.out.println(this.name+"在学习"); }}//person >名字、生日、身高、体重//类(抽象) > 阅读全文

posted @ 2021-04-29 17:52 luohzzz 阅读(56) 评论(0) 推荐(0) 编辑

值传递、引用传递

摘要: public class oopDemo4 { public static void main(String[] args) { //java属于值传递 int a =1; System.out.println(a); change(a); System.out.println(a);//这里输出a 阅读全文

posted @ 2021-04-29 17:48 luohzzz 阅读(21) 评论(0) 推荐(0) 编辑

方法调用

摘要: public class oopDemo2 { public static void main(String[] args) { new oopDemoStudent().say();//调用非静态方法要用new实例化, return; } //oopDemoStufent2().say1(); / 阅读全文

posted @ 2021-04-29 17:45 luohzzz 阅读(43) 评论(0) 推荐(0) 编辑

方法定义回顾

摘要: public class oopDemo1 { public static void main(String[] args) { }//方法定义的回顾 /* 修饰符 返回值类型 方法名(参数){ 方法体 return 返回值; } */ public String LUO(){ return "lu 阅读全文

posted @ 2021-04-29 17:41 luohzzz 阅读(42) 评论(0) 推荐(0) 编辑