- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家晚上好,
我在介绍性 java 类的一些代码中遇到了编译问题。手头的应用程序创建了一个计算器。当尝试编译时,我收到一条错误,指出我有一个“无法访问的语句”,这让我相信我陷入了某个循环(同样,我正在学习入门类(class),所以我的假设可能是错误的)。我检查了无数次代码,但找不到问题所在。编译器指向第 99 行,keypad.add(keys[12]);//减去,作为错误的来源。我还在该行末尾添加了“/ERROR/”以帮助指出。除了帮助定位此编译错误的来源之外,您是否还可以告诉我,除了仔细梳理代码之外,我是否还应该采用任何技术来查找此类错误?
import java.awt.*;
import java.awt.event.*;
import java.awt.datatransfer.*;
import java.text.DecimalFormat;
import javax.swing.JOptionPane;
public class Calculator extends Frame implements ActionListener
{
private Button keys[];
private Panel keypad;
private TextField lcd;
private double opl;
private boolean first;
private boolean foundKey;
private boolean clearText;
private int lastOp;
private DecimalFormat calcPattern;
public Calculator()
{
// create an instance of the menu
MenuBar mnuBar = new MenuBar();
setMenuBar(mnuBar);
// construct and populate the File menu
Menu mnuFile = new Menu("File", true);
mnuBar.add(mnuFile);
MenuItem mnuFileExit = new MenuItem("Exit");
mnuFile.add(mnuFileExit);
// construct and populate the Edit menu
Menu mnuEdit = new Menu("Edit", true);
mnuBar.add(mnuEdit);
MenuItem mnuEditClear = new MenuItem("Clear");
mnuEdit.add(mnuEditClear);
mnuEdit.insertSeparator(1);
MenuItem mnuEditCopy = new MenuItem("Copy");
mnuEdit.add(mnuEditCopy);
MenuItem mnuEditPaste = new MenuItem("Paste");
mnuEdit.add(mnuEditPaste);
// construct and populate the About menu
Menu mnuAbout = new Menu("About", true);
mnuBar.add(mnuAbout);
MenuItem mnuAboutCalculator = new MenuItem("About Calculator");
mnuAbout.add(mnuAboutCalculator);
// add the ActionListener to each menu item
mnuFileExit.addActionListener(this);
mnuEditClear.addActionListener(this);
mnuEditCopy.addActionListener(this);
mnuEditPaste.addActionListener(this);
mnuAboutCalculator.addActionListener(this);
// assign an ActionCommand to each menu item
mnuFileExit.setActionCommand("Exit");
mnuEditClear.setActionCommand("Clear");
mnuEditCopy.setActionCommand("Copy");
mnuEditPaste.setActionCommand("Paste");
mnuAboutCalculator.setActionCommand("About");
// constuct components and initialize beginning values
lcd = new TextField(20);
lcd.setEditable(false);
keypad = new Panel();
keys = new Button[16];
first = true;
opl = 0.0;
clearText = true;
lastOp = 0;
calcPattern = new DecimalFormat("########.########");
// consturct and assign captions to the Buttons
for (int i=0; i<=9; i++)
keys[i] = new Button(String.valueOf(i));
keys[10] = new Button("/");
keys[11] = new Button("*");
keys[12] = new Button("-");
keys[13] = new Button("+");
keys[14] = new Button("=");
keys[15] = new Button(".");
// set Frame and keypad layout to grid layout
setLayout(new BorderLayout());
keypad.setLayout(new GridLayout(4,4,10,10));
for (int i=7; i<=10; i++) // 7, 8, 9, divide
keypad.add(keys[i]);
for (int i=4; i<=6; i++) // 4, 5, 6
keypad.add(keys[i]);
keypad.add(keys[11]); // multiply
for (int i=1; 1<=3; i++) // 1, 2, 3
keypad.add(keys[i]);
keypad.add(keys[12]); // subtract /*ERROR*/
keypad.add(keys[0]); // 0 key
for (int i=15; i>=13; i--) // decimal point, =, +
keypad.add(keys[i]);
for (int i=0; i<keys.length; i++)
keys[i].addActionListener(this);
add(lcd, BorderLayout.NORTH);
add(keypad, BorderLayout.CENTER);
addWindowListener(
new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
);
} // end of constructor method
public void actionPerformed(ActionEvent e)
{
// test for menu item clicks
String arg = e.getActionCommand();
if (arg == "Exit")
System.exit(0);
if (arg == "Clear")
{
clearText = true;
first = true;
opl = 0.0;
lcd.setText("");
lcd.requestFocus();
}
if (arg == "Copy")
{
Clipboard cb = Toolkit.getDefaultToolkit().getSystemClipboard();
StringSelection contents = new StringSelection(lcd.getText());
cb.setContents(contents, null);
}
if (arg == "Paste")
{
Clipboard cb = Toolkit.getDefaultToolkit().getSystemClipboard();
Transferable content = cb.getContents(this);
try
{
String s = (String)content.getTransferData(DataFlavor.stringFlavor);
lcd.setText(calcPattern.format(Double.parseDouble(s)));
}
catch (Throwable exc)
{
lcd.setText("");
}
}
if (arg == "About")
{
String message = "Calculator ver.1.0\nOpenExhibit Softwar\nCopyright 2007\nAll rights Reserved";
JOptionPane.showMessageDialog(null,message,"About Calculator", JOptionPane.INFORMATION_MESSAGE);
}
// test for button clicks
foundKey = false;
// search for the clicked key
for (int i=0; i<keys.length && !foundKey; i++)
{
if(e.getSource() == keys[i])
{
foundKey = true;
switch(i)
{
// number and decimal point buttons
case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 15:
if(clearText)
{
lcd.setText("");
clearText = false;
}
lcd.setText(lcd.getText() + keys[i].getLabel());
break;
// operator buttons
case 10: case 11: case 12: case 13: case 14:
clearText = true;
if (first) // first operand
{
if(lcd.getText().length()==0) opl = 0.0;
else opl = Double.parseDouble(lcd.getText());
first = false;
clearText = true;
lastOp = i; // save the last operator
}
else // second operand
{
switch(lastOp)
{
case 10: // divide button
opl /= Double.parseDouble(lcd.getText());
break;
case 11: // multiply button
opl *= Double.parseDouble(lcd.getText());
break;
case 12: // minus button
opl -= Double.parseDouble(lcd.getText());
break;
case 13: // plus button
opl += Double.parseDouble(lcd.getText());
break;
} // end of switch(lastOp)
lcd.setText(calcPattern.format(opl));
clearText = true;
if(i==14) first = true; // equal button
else lastOp = i; // save last operator
} // end else
break;
} // end of switch(i)
} // end of if
} // end of for
} // end of actionPerformed
public static void main(String args[])
{
// set frame properties
Calculator f = new Calculator ();
f.setTitle("Calculator Application");
f.setBounds(200,200,300,300);
f.setVisible(true);
// set image properties and add to frame
Image icon = Toolkit.getDefaultToolkit().getImage("calcImage.gif");
f.setIconImage(icon);
} // end of main
} // end of class
一如既往,感谢您的帮助。
杰瑞
最佳答案
该语句之前的循环中有一个小拼写错误。看看你是否能发现它:
for (int i=1; 1<=3; i++) // 1, 2, 3
keypad.add(keys[i]);
您的测试是1<=3
,这总是正确的,因为 1 总是小于或等于 3。我认为你的意思是:
for (int i=1, i<3; i++)
keypad.add(keys[i]);
关于java - 编译问题: Unreachable statement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19484153/
在 go lang 中使用“If with a short statement”有什么好处。引用:go tour if v := math.Pow(x, n); v < lim { retur
完全错误: Warning: Unsafe statement written to the binary log using statement format since BINLOG_FORMAT
完全错误: Warning: Unsafe statement written to the binary log using statement format since BINLOG_FORMAT
我有三个存储过程 Sp1、Sp2 和 Sp3。 第一个 (Sp1) 将执行第二个 (Sp2) 并将返回的数据保存到 @tempTB1 中,第二个将执行第三个 (Sp3) 并将数据保存到 @tempTB
我已将 FLAG 设置为 1,并且正在执行 ARG 值应该仅为 DEV。但是我得到的是 ARG= DEV + CLIENTID 000023 // FLAG=1 000026 // I
我已将 FLAG 设置为 1,并且正在执行 ARG 值应该仅为 DEV。但是我得到的是 ARG= DEV + CLIENTID 000023 // FLAG=1 000026 // I
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
PMD告诉我 A switch with less than 3 branches is inefficient, use a if statement instead. 这是为什么呢?为什么是3?他
我刚开始学习 Racket,所以我仍在努力弄清楚这门语言的复杂性。我正在尝试在列表中实现我自己的搜索功能。如果函数找到它,则返回索引,否则返回 -1。 (define (find-index list
在 Kotlin 中,您可以使用类似于三元运算符的 if 语句。 我们可以选择做这样的事情: val x = if (isOdd) 1 else 2 但是如果我们有多个变量需要根据某些条件进行设置,那
在我的 Android 应用程序中,我尝试使用 XMLPullParser 使用以下代码读取 xml 文件: while (eventType != XmlPullParser.END_DOCUMEN
这个问题已经有答案了: Boolean expressions in Java (8 个回答) 已关闭 7 年前。 我遇到过一些情况,其中第一个似乎改变了 boolean 值,而第二个却没有!两者之间
我基本上想做的是: select * from request where id = 1 and created_at like (today's date); 但使用 Eloquent 。 我试过:
我不确定为什么会收到此代码。基本上我希望能够动态定位我的发射器,但是当我添加一个选项来检查位置并根据需要进行纠正时,我不断收到此错误。 添加的代码是 if (
何时使用语句而不是准备语句。我想语句用于没有参数的查询,但为什么不使用准备好的语句呢?对于没有参数的查询,哪个更快。 最佳答案 I suppose statement is used in queri
我必须创建一个表,如下所示 借款人(客户编号,贷款编号) 如果客户没有超过 3 笔贷款,则可以贷款。 我创建的表如下 create table borrower( customerno int(5),
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicates: Is "else if" faster than "switch() case"? What is the
typescript 版本 2.2.2 我在我的 UserRoutzr.ts 中写了这个要求 const users = require(path.join(process.cwd() + "/da
我有一个用 JPQL 编写的应用程序,它可以命中非常不同的查询(在不同的资源上)。 对于很多此类查询,我需要知道结果总数(计数),因为我没有应用任何 LIMIT/OFFSET 由于此查询的性质非常不同
我对以下 Java 语句感到困惑: ArtClass artClass0 = new ArtClass(); int int3 = 73; boolean boolean0 = artClass0.f
我是一名优秀的程序员,十分优秀!