码迷,mamicode.com
首页 > 其他好文 > 详细

方法重载

时间:2019-05-09 00:50:53      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:重载   ==   结果   png   str   一个   http   值类型   参数   

方法重载

  • 同一个类中,允许存在一个以上的同名方法,只要它们的参数列表不同即可,与修饰符和返回值类型无关

参数列表:

  • 个数不同
  • 数据类型不同
  • 顺序不同

重载方法调用:JVM通过方法的参数列表,调用不同的方法。

代码举例:

public class Demo09 {
    public static void main(String[] args) {
        //定义不同数据类型的变量
        byte a = 10;
        byte b = 20;
        short c = 10;
        short d = 20;
        int e = 10;
        int f = 10;
        long g = 10;
        long h = 20;
        // 调用
        System.out.println(compare(a, b));
        System.out.println(compare(c, d));
        System.out.println(compare(e, f));
        System.out.println(compare(g, h));
    }
    // 两个byte类型的
    public static boolean compare(byte a, byte b) {
        System.out.println("byte");
        return a == b;
    }
    // 两个short类型的
    public static boolean compare(short a, short b) {
        System.out.println("short");
        return a == b;
    }
    // 两个int类型的
    public static boolean compare(int a, int b) {
        System.out.println("int");
        return a == b;
    }
    // 两个long类型的
    public static boolean compare(long a, long b) {
        System.out.println("long");
        return a == b;
    }
}

执行结果

技术图片

 

方法重载

标签:重载   ==   结果   png   str   一个   http   值类型   参数   

原文地址:https://www.cnblogs.com/wurengen/p/10835916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!