标签:print 参数表 str void 定义 int 多个 sys system
//方法的重载是指在一个类中可以定义相同的名字。但参数不同的多个方法。调用时,会根据不同的参数表选择对应的方法。
public class Test { void max (int a , int b) { System.out.println( a > b ? a : b); } void max(short a ,short b ) { System.out.println("short"); System.out.println( a > b ? a : b); } void max(float a , float b) { System.out.println( a > b ? a : b); } public static void main(String[] args) { Test t = new Test(); t.max(3,4); short a = 3; short b = 4; t.max(a, b); } }
标签:print 参数表 str void 定义 int 多个 sys system
原文地址:https://www.cnblogs.com/lsswudi/p/11227165.html