面向对象03回顾方法的调用
2021/6/10 18:27:13
本文主要是介绍面向对象03回顾方法的调用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package com.oop.demo01; public class Demo02 { public static void main(String[] args) { //实例化这个类 new //对象类型 对象名 = 对象值; Student student = new Student(); student.say(); } //和类一起加载的 public void a(){ b(); f(); } //类实例化 之后才会存在 public void b(){ } public static void c(){ d(); } public static void d(){ } public void e(){ f(); } public void f(){ } }
package com.oop.demo01; public class Demo03 { public static void main(String[] args) { //实际参数和形式参数的类型要对应! int add = Demo03.add(1,2); System.out.println(add); } public static int add(int a, int b){ return a+b; }
package com.oop.demo01; public class Demo04 { public static void main(String[] args) { int a = 1; System.out.println(a);//1 Demo04.change(a); System.out.println(a);//1 } //返回值为空 public static void change(int a){ a = 10; }
package com.oop.demo01; //引用传递: 对象,本质还是值传递 //对象,内存 public class Demo05 { public static void main(String[] args) { Perosn perosn = new Perosn(); System.out.println(perosn.name);//null Demo05.change(perosn); System.out.println(perosn.name);//Leo } public static void change(Perosn perosn){ //perosn是一个对象:指向的--> Perosn perosn = new Perosn();这是一个具体的人,可以改变属性! perosn.name = "Leo"; } } class Perosn{ String name;//null }
}
}
这篇关于面向对象03回顾方法的调用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?