gpt4 book ai didi

java - 解决这个错误 "The import java.util.Random conflicts with a type defined in the same file"

转载 作者:行者123 更新时间:2023-12-02 13:38:28 28 4
gpt4 key购买 nike

package amar;
import java.util.Random;

package amar;
import java.util.Random;
public class Random {
public static void main(String args[]){
Random dice = new Random();
int number;
for(int counter=1;counter<=10;counter++)
{
number = 1+dice.nextInt(6);
System.out.println(number +" ");
}
}
}

为什么当我尝试在 Eclipse Luna 中运行它时会收到错误?

最佳答案

您正在导入一个名为 Random 的类,并且一个名为 Random 的类中。更改您自己的类(class)名称。

关于java - 解决这个错误 "The import java.util.Random conflicts with a type defined in the same file",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42870395/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com