当前位置:网站首页>重载和重写的区别
重载和重写的区别
2022-07-06 09:20:00 【快醒醒鸭今天你编程了吗?】
首先,这道题面试常问,但是两个之间毫无任何关系
重载:
发生在同一个类当中,方法名必须相同,参考类型不同,个数不同,顺序不同,方法返回值和修饰可以不同,发生在编译时。
重写:
发生在父子类中,方法名,参数列表可以不同,返回值范围小于等于父类,子类不可以抛出比父类更多的异常,子类访问修饰符范围大于等于父类;如果父类方法访问修饰符为private,则子类就不能重写该方法
以下这种情况也是错误的,会报错:
//以下编译会报错
public int add(int a,int b)
public String add(int a,int b)
以上就是我对重写和重载区别的认识,要是有些小伙伴有更好的理解,可以评论区留言!!!
边栏推荐
- MPLS experiment
- View UI Plus 发布 1.3.1 版本,增强 TypeScript 使用体验
- vector
- Decomposition relation model of the 2022 database of tyut Taiyuan University of Technology
- 最新坦克大战2022-全程开发笔记-1
- TYUT太原理工大学2022软工导论考试题型大纲
- 用栈实现队列
- 2. Preliminary exercises of C language (2)
- 5. Function recursion exercise
- 12 excel charts and arrays
猜你喜欢
Tyut Taiyuan University of technology 2022 "Mao Gai" must be recited
3. C language uses algebraic cofactor to calculate determinant
Summary of multiple choice questions in the 2022 database of tyut Taiyuan University of Technology
凡人修仙学指针-1
Arduino+ds18b20 temperature sensor (buzzer alarm) +lcd1602 display (IIC drive)
西安电子科技大学22学年上学期《信号与系统》试题及答案
凡人修仙学指针-2
TYUT太原理工大学2022数据库大题之概念模型设计
Alibaba cloud microservices (III) sentinel open source flow control fuse degradation component
1.C语言初阶练习题(1)
随机推荐
Branch and loop statements
分支语句和循环语句
View UI Plus 發布 1.3.1 版本,增强 TypeScript 使用體驗
C语言入门指南
The overseas sales of Xiaomi mobile phones are nearly 140million, which may explain why Xiaomi ov doesn't need Hongmeng
TYUT太原理工大学2022数据库大题之概念模型设计
MySQL 30000 word essence summary + 100 interview questions, hanging the interviewer is more than enough (Collection Series
System design learning (I) design pastebin com (or Bit.ly)
5. Function recursion exercise
ROS machine voice
Tyut Taiyuan University of technology 2022 introduction to software engineering examination question outline
3. Number guessing game
1.C语言矩阵加减法
最新坦克大战2022-全程开发笔记-2
4.30 dynamic memory allocation notes
Atomic and nonatomic
Quickly generate illustrations
View UI Plus 发布 1.1.0 版本,支持 SSR、支持 Nuxt、增加 TS 声明文件
165. Compare version number - string
凡人修仙学指针-1