- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是代码:
package main;
import java.awt.*;
import acm.graphics.*;
import acm.program.*;
public class AjorBandi extends GraphicsProgram{
public void run(){
private static final BRICK_TOOL=30 ;
private static final BRICK_ARZ = 10;
int x,y;
x=0;
y=100;
for(int ii=0;ii<14;ii++){
for(int i= 0;i<14;i++){
Grect rect = new Grect(x,y,BRICK_TOOL,BRICK_ARZ);
add(rect);
x+=30;
i-=1;
}
y+=10;
x+=15;
}
}
}
这是来自 eclipse 的 Grect 错误消息:
Multiple markers at this line
- Grect cannot be resolved to a
type
- Grect cannot be resolved to a
type
这是私有(private)静态
错误消息:
Multiple markers at this line
- Line breakpoint:AjorBandi [line: 10] - run()
- Syntax error on token "final", float expected
- Illegal modifier for parameter BRICK_TOOL; only final is
permitted
我的 Eclipse IDE 出现编译错误。这两个错误的问题是什么?
最佳答案
你的两个变量
private static final BRICK_TOOL=30 ;
private static final BRICK_ARZ = 10;
有两个问题。
它们应该在类级别声明,而您错过了最重要的东西,类型。我举了一个例子,我使用 int
来表示它们:
public class MyClass
{
private static final int BRICK_TOOL = 30;
private static final int BRICK_ARZ = 10;
myMethod()
{
//do stuff here
{
}
关于Java Grect 和私有(private)静态错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26892439/
我正在尝试快速学习,但似乎我已经被卡住了。有人能指出为什么 { didSet { setNeedsDisplay() } } 似乎不起作用吗?!目标是在用户点击的地方画一个小圆圈这是我的 Contro
我想创建一个事件,以便在鼠标事件上测试真/假,在假的情况下,发生简单的动画,但我只看到动画的结果,而不是动画本身。 我已将“miss”、“dx”和“dy”定义为实例变量。 public voi
这是代码: package main; import java.awt.*; import acm.graphics.*; import acm.program.*; public class
从你们那里学到了很多东西,几个小时后,我终于成功地将 xib 加载到 GRect 中,以用于我构建的搜索 xib。 基本上,当您点击 main.xib 中的单元格时,它会在 Grect 中加载 sea
ArrayList tiles = new ArrayList(); public void init(){ for(int i=0; itiles) { for (int i = 0
我是一名优秀的程序员,十分优秀!