首页 > 图灵资讯 > 技术篇>正文
Java中什么是重载和重写
2024-09-29 20:04:24
1. java中的重载方法是什么?
当同一类别中的多种方法共享相同的名称,但有不同的参数(类型、数字或两者)时,就会发生方法重载。方法重载背后的主要思想是提高程序的可读性。
1.1 重载方法的特点- 相同的方法名称:所有重载方法必须有相同的名称。
- 不同的参数列表:方法的参数数量或类型必须不同。
- 编译时多态性:方法重载 java 多态性在中间编译时(或静态)的一个例子。
让我们看一个简单的例子来解释重载方法:
public class calculator { // method to add two integers public int add(int a, int b) { return a + b; } // method to add three integers public int add(int a, int b, int c) { return a + b + c; } // method to add two doubles public double add(double a, double b) { return a + b; } }
1.3 示例说明
在上述示例中,calculator 类有三个名字 add 重载方法。每种方法都有不同的参数列表:
- 第一种方法需要两种 int 参数。
- 第二种方法需要三个int参数。
- 第三种方法需要两个double参数。
当调用 add 该方法将根据传输的参数选择合适的版本。这使得代码更直观、更容易理解。
1.4 演示和结果public class testcalculator { public static void main(string[] args) { calculator calc = new calculator(); system.out.println("addition of two integers: " + calc.add(10, 20)); // outputs 30 system.out.println("addition of three integers: " + calc.add(10, 20, 30)); // outputs 60 system.out.println("addition of two doubles: " + calc.add(10.5, 20.5)); // outputs 31.0 } }
2. java中的方法重写是什么?
当子类提供超级类中定义的方法的具体实现时,就会发生方法重写。该方法重写的目的是允许子类提供由其超级类别定义的方法的具体实现。
立即学习“Java免费学习笔记(深入);
2.1 重写方法的特点- 签名方法相同:子类中的方法必须与超类中的方法有相同的名称、返回类型和参数。
- 操作时多态性:方法重写是 java 中间运行时(或动态)多态性的示例。
- @override 注释 :使用 @override 注释是一种很好的方法,表明某种方法正在重写超级方法。
让我们看一个方法重写的实际例子:
class animal { // method in the superclass void sound() { system.out.println("the animal makes a sound"); } } class dog extends animal { // overriding the sound() method in the subclass @override void sound() { system.out.println("the dog barks"); } }
2.3 示例说明
在上述例子中:
- animal 类有一个名字 sound 用于打印一般信息的方法。
- dog 类扩展 animal 并重写 sound 提供特定信息的方法。
当在 dog 调用实例 sound 该方法将在执行时执行 dog 中重写的方法。
2.4 演示和结果public class TestAnimal { public static void main(String[] args) { Animal myDog = new Dog(); // Upcasting myDog.sound(); // Outputs: The dog barks } }
3. 重载与重写:主要区别: 3.1 定义
- 重载 :多种方法涉及相同名称但参数不同的同一类别。
- 重写:在子类中重新定义已定义在超类中的方法。
- 重载 :多态性代表编译。
- 重写:运行时代表多态性。
- 重载:该方法发生在编译过程中。
- 重写:该方法发生在运行过程中。
- 重载:当使用不同类型或数量的参数执行类似功能时。
- 重写:当子类需要为超类中定义的方法提供特定的实现。
对于有效的编写,理解方法重载与方法重写的区别 java 代码非常重要。重载允许多方法具有相同的名称但不同的参数,从而提高代码的可读性和可用性。另一方面,重写使子类能够提供超级定义方法的具体实现,从而促进运行过程中的多态性。
如果您有任何问题或需要进一步解释,请随时在下面发表评论。我来帮忙!
读更多帖子:java 什么是重载和重写?
以上是Java重载和重写的详细内容。请关注图灵教育的其他相关文章!