我刚刚将我的进度上传到程序中。请看一下,看看它缺少什么。另外,请忽略其中字符串中的蹩脚笑话。可从此链接下载:http ://www.mediafire.com/?n0sp8v22egfsx7t
请注意,我使用 NetBeans 轻松制作程序。
编辑:
一旦读取了最内行或最后一行代码,如何阻止 JButton 的 ActionEvent 方法重新迭代嵌套 if-else 条件的第一层的读取?
另外,作为一个额外的问题,我如何提示系统在选择之间进行选择,从而一旦给出选择就从另一个分支出来?显然,我正在做的只是将这些字符串块连接在一起,而不是将它们分支出来,因此一旦要显示与显示的前一个代码块相关的新代码块,就会出现迭代。.
片段:
// Strings of text displayed on the JTextArea is shown here
// prompting to choose between two options: example, left or right
jButton1.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
jButton1actionPerformed(e);
}
});
private void jButton1actionPerformed(ActionEvent e)
{
if(jRadioButton1.isSelected())
{
// Display strings of text as response to the choice left
// Another options to choose from here:, example, up or down
JTextArea.setText("You've chosen: " );
JTextArea.append("Now choose between: ");
if (jRadioButton1.isSelected())
{
JTextArea.append("From first choice, choose between: ");
// stop from here
}
else if (jRadioButton2.isSelected())
{
//same as above
}
}
if (jRadioButton2.isSelected())
{
// Same as above
}
}