如何解决这些“非法表达式”错误?
问题描述:
我一直在为这个学校的代码工作,但我一直在得到一些错误,我不能fix.can有人帮助我!!!!。代码所做的是用户在文本框中输入数字1 2 3或4,Applet将为每个数字绘制不同的形状。如何解决这些“非法表达式”错误?
the errors
illegal start of expression - line 53
illegal start of expression - line 53
';' expected - 53
';' expected - 53
illegal start of expression - line 63
illegal start of expression - line 63
';' expected - 63
';' expected - 63
/**
* @(#)fourshapesACON.java
*
* fourshapesACON Applet application
*
* @
* @version 1.00 2011/3/28
*/
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
import javax.swing.*;
public class fourshapesACON extends Applet
{
Container pane = getContentPane();
JLabel question = new JLabel("pick one of the four shapes:1-Cirle, 2-Square, 3-Rectangle, 4-Oval");
JLabel choice1 = new JLabel("Circle");
JLabel choice2 = new JLabel("Square");
JLabel choice3 = new JLabel("Rectangle");
JLabel choice4 = new JLabel("Oval");
JLabel other = new JLabel("the number you have pick didn't match. pick from the numbers given");
JTextField answer = new JTextField(20);
JButton hey = new JButton(Enter);
public void init()
{
pane.setLayout(new FlowLayout());
pane.add(question);
pane.add(choice1);
pane.add(choice2);
pane.add(choice3);
pane.add(choice4);
pane.add(other);
pane.add(anwser);
pane.add(hey);
pane.add(Enter);
hey.addActionListener(this);
pane.setBackground(Color.BLUE);
question.setforeground(Color.WHITE);
choice1.setforeground(Color.GREEN);
choice2.setforeground(Color.GREEN);
choice3.setforeground(Color.GREEN);
choice4.setforeground(Color.GREEN);
other.setforeground(Color.RED);
public void actionPeformed(ActionEvent e)***(this is line 53)***
{
String reply = answer.getText();
String choice1="1";
String choice2="2";
String choice3="3";
String choice4="4";
public void paint(Graphics g)***(this is line 63)***
{
if (reply.equals(choice1)) {
pane.add(choice1);
g.drawRoundRect(200,200,80,80);
} else if (reply.equals(choice2)){
pane.add(choice2);
g.drawfillRect(200,200,80,80);
} else if(reply.equals(choice3)) {
pane.add(choice3);
g.drawfillRect(200,200,80,40);
} else if (reply.equals(choice4)){
pane.add(choice4);
g.drawfillOval(200,200,50,50);
} else
pane.add(other);
}
}
}
}
答
为什么方法油漆定义里面actionPeformed?
答
您错过了other.setforeground(Color.RED)
之后的关闭;
(并且您还在绘画定义之前完成了此操作)。当你看到一个错误时,试着看看前面的几行,因为它会经常给你一个关于错误的提示。
这不是如何在SO上提出问题,这就是为什么你的问题即将被关闭为“不是真正的问题”。请阅读http://stackoverflow.com/questions/how-to-ask。 – 2011-03-31 18:00:54
这不是很具体,吉姆。我实际上认为他很好地识别了他收到的错误,并标记了错误所在的代码行号。当你关闭它时,我正在做一个很好的答案。太糟糕了,我无法帮助这个人。我正在提名重新开放。 – 2011-03-31 18:03:54
如果你已经关闭它作为这个问题的重复,我可能已经了解:http://stackoverflow.com/questions/1534263/how-doi-i-fix-an-illegal-start-of-expression-error-在Java的 – 2011-03-31 18:08:31