课后习题2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了课后习题2相关的知识,希望对你有一定的参考价值。

请看以下代码,你发现有什么特殊之处吗?

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;
}
}

答:两个函数的参数类型,参数个数和参数顺序都不一样。

以上是关于课后习题2的主要内容,如果未能解决你的问题,请参考以下文章

课后习题和问题 复习题 2.2~2.5节

计量经济学 第四版 课后答案 李子奈 潘文卿 版 课后 练习题答案 高等教育出版社 课后习题答案

最详细数据结构(C语言版 第2版)课后习题答案全集 严蔚敏 等 编著

课后习题1-2章

快学Scala课后习题答案

课后习题2