- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Dice2 myDice2;
myDice2 = new Dice();
公共(public)类 RecordDice {
public static void main (String [] args) {
//Declaring the variables of sides and choice
int i;
int choice;
//Declaring the dice2
Dice2 myDice2;
myDice2 = new Dice();
//Asking the user for input
System.out.println("How many sides do you want your dice to have?");
Scanner sc = new Scanner(System.in);
i = sc.nextInt();
if (i!= 4 )//|| 6|| 8|| 12|| 20|| 100)
{
System.out.println("You have entered an incorrect number");
}
else
{
//myDice2= new Dice(i);
}
//Starting the do statement
do {
System.out.print("1- Reroll the dice");
System.out.print("2- Get the value");
System.out.print("4- Get the minimum");
System.out.print("Please make a choice");
//Gathering the choice for the switch statement
Scanner s= new Scanner (System.in);
choice = s.nextInt();
//Starting the switch statement with varying cases dependent on entry
switch(choice){
case '1':
myDice2.reroll();
System.out.print("1- Reroll the dice");
System.out.print("2- Get the value");
System.out.print("4- Get the minimum");
System.out.print("Please make a choice");
break;
case '2':
myDice2.getValue();
System.out.print("1- Reroll the dice");
System.out.print("2- Get the value");
System.out.print("4- Get the minimum");
System.out.print("Please make a choice");
break;
/*case '3':
myDice.getMaxValue();
System.out.print("1- Reroll the dice");
System.out.print("2- Get the value");
System.out.print("4- Get the minimum");
System.out.print("Please make a choice");
break;
case '4':
myDice.getMinValue();
System.out.print("1- Reroll the dice");
System.out.print("2- Get the value");
System.out.print("4- Get the minimum");
System.out.print("Please make a choice");
*/
default:
System.out.println("Invalid choice entered");
}
//If the choice entered isn't the right value it exits the program
}while( choice < 0);
System.exit(0);
} }
RecordDice.java:9:错误:需要类、接口(interface)或枚举 骰子2 myDice2; ^RecordDice.java:10:错误:需要类、接口(interface)或枚举 myDice2 = new Dice(); ^2 个错误
Exit code: 1
当我尝试编译程序时出现上述两个错误。抱歉,很长的帖子和业余代码我只是一个初学者。任何帮助将不胜感激。
最佳答案
在java中,你必须在类内部声明字段,不能在外部删除它们
public class RecordDice {
public Dice2 myDice2 = new Dice();
<小时/>
看来你的继承是倒退的。如果没有实际看到 Dice
和 Dice2
的类声明,我无法确定,但命名约定表明 Dice2
继承自 骰子
public class RecordDice {
public Dice myDice2 = new Dice2();
关于java - 骰子声明错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20079098/
我刚刚向自己介绍了 WebGL 和 Threejs,作为开始,我正在尝试创建一个 3D 骰子。我已经到了创建立方体的地步,但我真的不知道如何在立方体的面上放置数字,我能找到的只是如何更改颜色。我已经查
这就是我现在得到的...... var max = 7; var min = 1; $('#dice').click(function() { random = Math.floor(Math.r
我是 Unity 的新手,一直在尝试掷骰子。我遇到了一组教程,它们允许我创建一个 3d 模具(模具使用 Rigidbody 和 Mesh Collider)并编写脚本使其在空格键上滚动,如下所示: 骰
我是 JavaScript 新手,我需要一些想法/帮助来了解如何使我的脚本正常工作。所以我们的想法是,你掷两个骰子,通过按下“掷骰子”按钮然后按下重置按钮来重置整个 HTML 中的所有内容。 所以事情
我正在尝试构建一个掷骰子游戏,如果计算机自动掷出一对骰子,并且如果 cpu 掷出 7 或 11,则用户获胜。然而,如果用户掷出 2、3 或 12,他们将自动失败。如果用户滚动任何其他数字(4、5、6、
背景 如此处所述http://www.ericharshbarger.org/dice/#gofirst_4d12 , “先走”骰子是一组四个骰子,每个都有唯一的编号,因此: 任何两个或更多骰子都不会
我是一名优秀的程序员,十分优秀!