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

动手动脑的问题以及课后实验性的问题2

时间:2019-09-26 13:16:39      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:return   ring   返回   style   技术   手动   png   turn   代码   

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

 1 // MethodOverload.java
 2 // Using overloaded methods
 3 
 4 public class DDD {
 5 
 6     public static void main(String[] args) {
 7         System.out.println("The square of integer 7 is " + square(7));
 8         System.out.println("\nThe square of double 7.5 is " + square(7.5));
 9     }
10 
11     public static int square(int x) {
12         return x * x;
13     }
14 
15     public static double square(double y) {
16         return y * y;
17     }
18 }

运行结果

技术图片

 

 发现重载函数参数类型不同返回的值也不同。

动手动脑的问题以及课后实验性的问题2

标签:return   ring   返回   style   技术   手动   png   turn   代码   

原文地址:https://www.cnblogs.com/125418a/p/11590251.html

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