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

动手动脑

时间:2019-09-29 23:59:50      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:src   The   next   color   运行   指定   结果   技术   条件   

动手动脑1、技术图片

 

 编写一个方法,使用以上算法生成指定数目(比如1000个)的随机整数。

import java.util.Random;
import java.util.Scanner;
public class TestSeed
{
    public static void main(String[] args)
 {
       
        Random r = new Random(System.currentTimeMillis());
        System.out.println("请输入要得到多少随机数");
        int m;
        Scanner in = new Scanner(System.in);
        m = in.nextInt();
        for(int i=0;i<m;i++)
         System.out.println( r.nextInt());
        
    }
}
运行结果:
请输入要得到多少随机数
10
1620020807
-2070122496
58291264
742117536
-1983758661
-1649711892
1181536659
1091375721
-870160946
-1878357734

动手动脑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;
         }
}
运行结果:
The square of integer 7 is 49

The square of double 7.5 is 56.25
 

满足以下条件的两个或多个方法构成重载关系:

(1)方法名相同

(2)参数类型不同,参数个数不同,或者是参数类型的顺序不同。

动手动脑

标签:src   The   next   color   运行   指定   结果   技术   条件   

原文地址:https://www.cnblogs.com/MoooJL/p/11610497.html

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