主函数调用相同函数名的小知识
Posted 杨寒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了主函数调用相同函数名的小知识相关的知识,希望对你有一定的参考价值。
// MethodOverload.java
// Using overloaded methods
public class MethodOverload {
public static void main(String[] args) {
System.out.println("The square of integer 7 is " + square(7));
System.out.println("\nThe square of double 7.5 is " + square(7.5));
}
public static int square(int x) {
return x * x;
}
public static double square(double y) {
return y * y;
}
}
在JAVA中,函数名字相同,返回类型不同是允许的,在调用过程中,调用int还是double取决于函数square()括号里的参数是int还是double,在调用相应函数。
以上是关于主函数调用相同函数名的小知识的主要内容,如果未能解决你的问题,请参考以下文章