package test;//1000个随机整数 import java.util.Random; public class test { public static void main(String[] args) { Random random = new Random(); for(int i=0;i<1000;i++){ int nextInt = random.nextInt(); System.out.println(nextInt); } } }
运行结果
2.查看一下jdk中System.out.println方法你发现了什么?
JDK中有许多System.out.println()同名的重载方法,方法名都是print():System是java.Lang里面的一个类。Out是System提供的用于标准输出的流,在没有重定向的情况下,会直接打印到终端,而println这个方式实际上是prinstream类提供的功能。
3.
package test; public class test { public static void main(String[] args) { System.out.println("The square of integer 7 is " + square(7)); System.out.println(" The 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; } }
v
java方法重载:两个函数功能相同,参数类型不同。
。