java重载时自动转换咋回事?举例说明
2021-06-19 05:05
标签:ram 5.5 version com method 说明 int style tomat 当一个重载的方法被调用时,Java在调用方法的参数和方法的自变量之间寻找匹配。 (视频下载) (全部书籍) //自动类型转换 Automatic type conversions() apply to overloading. class Overl { // overload test for a double parameter public class Test { result结果 is: Assignment: practice overload, make two methods,add(int a,int
b), add(int a,int b,int c) java重载时自动转换咋回事?举例说明 标签:ram 5.5 version com method 说明 int style tomat 原文地址:https://www.cnblogs.com/mark-to-win/p/9690802.html
但是,这种匹配并不总是精确的。只有在找不到精确匹配时,Java的自动转换才会起作用。 (如果定义了test(int),当然先调用test(int)而不会调用test(double)。 )
本章源码
// Overload test for two integer parameters.
void test(int a, int b) {
System.out.println("a and b: " + a + " " + b);
}
void test(double a) {
System.out.println("Inside test(double) a: " + a);
}
}
public static void main(String args[]) {
Overl ob = new Overl();
int i = 80;
ob.test(i); // 没有int类型,所以调用double类型的自动转换。this will invoke test(double)
ob.test(555.5); // 准确调用,this will invoke test(double)
ob.test(5, 8);//准确调用
}
}
Inside test(double) a: 80.0
Inside test(double) a: 555.5
a and b: 5 8
详情请进:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner2_web.html#AutomaticConversion
文章标题:java重载时自动转换咋回事?举例说明
文章链接:http://soscw.com/index.php/essay/95811.html