欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Cannot make a static reference to the non-static method报错的解决办法

程序员文章站 2022-04-28 09:30:46
...

报错情况

在学习过程中需要用到随机数函数,在这里我选择了Random类中的nextInt()方法,使用方法是Random.nextInt(20)。

报错原因

方法不是静态的,不能直接通过类名调用,需要创建对象使用,具体代码为:`

		ArrayList<Integer> al=new ArrayList<Integer> ();
		Random r=new Random();
		al.add(r.nextInt(20));
相关标签: Java 报错