Many students are confused about overload and override. It is recommended not to memorize conceptual knowledge by rote, but to understand and memorize it.
Let me give you my definition first:
Overload: In the same class or classes with inheritance relationships, a group of names have the same name. Method groups with different parameters. The essence is the name given to different methods.
Override: Between two classes that have an inheritance relationship, the methods that exist in the parent class are redefined in the subclass. The essence is to provide different implementations for the same method.
Let’s first look at an example of overloading:
public class OverloadParent{ public String getPerson(String name){ return “personA” + name; } public String getPerson(int age){ return “personB” ; } public String getPerson(String name,int age){ return “personC”; } public void getPerson(String name){ System.out.println(“我是重载的方法吗?”); } }
public class OverloadChildextends OverloadParent { public void getPerson(double money){ Sytem.out.println(“我是重载的方法吗”); } }
Note:
(1) There are 4 methods with the same name in OverloadParent
( 2) The parameter types and numbers of the first three methods are inconsistent, and the return values are consistent, constituting overloading
(3) Method 4 and method 1 only have different return values, which do not constitute overloading, and the compiler will not pass it .
The return value is the result of method execution. When we call the method, we will not specify "I want to call a method with a return value of type xxx". It cannot become a feature of method overloading.
(4) OverloadParent inherits Demo, and it has all the methods in Demo. It felt that the existing method could not meet the needs, so it simply overloaded one.
Overloading flag: The method name is the same, the parameters are different (number or type), and it has nothing to do with the return value.
Let’s look at an override example:
public class OverrideParent{ public void fly(){ System.out.println(“Ican fly!”); } }
public class OverrideChild extends OverrideParent{ @override public void fly(){ System.out.println(“Ican't fly, but I can run!”); }
public static vid main(String[] args){ OverwriteParent child= new OverwriteChild(); child.fly(); } }
What will be output when executing the main method of OverrideChild?
The answer is: I can'tfly, but I can run!
We see:
(1) Both OverrideChild and OverrideParent have a fly method
(2) The return value and modifier of fly are the same, only the method body is different
(3) There is an @overwrite annotation before the fly method of the subclass, which appears in jdk1.5, only use For class inheritance, 1.6 can be used for interface implementation. This annotation helps the compiler check, and it can be omitted.
Override flag: The child inherits the parent class and has different implementations of the same method.
Application Scenario
Overloading: When the methods have similar functions but need to pass different parameters.
Overriding: When a subclass has its own unique behavior and inherits it from the parent class but cannot meet its own needs.
PS: Overloading and overwriting are both manifestations of polymorphism. The former is compiler polymorphism, and the latter is runtime polymorphism.
Thank you for reading, I hope to help everyone, thank you for your support for this site!
For more detailed explanations and examples of java overload and override, please pay attention to the PHP Chinese website!

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
