我的动作侦听器中的If Else
语句无法正常工作。
按下Jbutton时,如果用户输入了数字0-9
和+-*/
的字符串,则程序正确执行。
否则,JOptionPane会显示错误消息。
在下面的代码中,似乎跳过If
条件并直接转到Else
无论如何???
如果您决定编译此代码..
示例后缀:当转换为中缀
主要
package p2gui;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
import java.awt.event.*;
import javax.swing.JOptionPane;
/**
*
* @author Mike
*/
public class P2GUI extends JFrame implements ActionListener {
JFrame f = new JFrame("Three Address Generator");// Title
private final JButton evaluate;
private final JLabel textfieldLabel;
private final JTextField entryField;
private final JLabel resutfieldlabel;
private final JTextField resultField;
private final JOptionPane popup = new JOptionPane();
P2GUI() {
f.setSize(425, 180);
f.setLayout(null);//using no layout managers
f.setVisible(true);//making the frame visible //window size
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
textfieldLabel = new JLabel("Enter Postfix Expression");
f.add(textfieldLabel);
textfieldLabel.setBounds(10, 10, 160, 25);
entryField = new JTextField("");
//entryField.addActionListener(this);//ActionListener
f.add(entryField);
entryField.setBounds(160, 10, 220, 25);
evaluate = new JButton("Construct Tree");
evaluate.addActionListener(this);//ActionListener
f.add(evaluate);
evaluate.setBounds(137, 55, 130, 30);
resutfieldlabel = new JLabel(" Infix Expression ");
f.add(resutfieldlabel);
resutfieldlabel.setBounds(20, 100, 100, 25);
resultField = new JTextField("");
//resultField.addActionListener(this);//ActionListener
resultField.setEditable(false);
f.add(resultField);
resultField.setBounds(125, 100, 220, 25);
}
@Override
public void actionPerformed(ActionEvent e) {
String fullString;
fullString = entryField.getText().trim();
if(fullString.matches("\\d+") && fullString.matches("[-+*/]")){
Convert conversion = new Convert();
resultField.setText(conversion.convert(fullString));
} else {
JOptionPane.showMessageDialog(null, "Please Enter Digit and
Arithmetic operator");
//eraseTextField();
}
}
public void eraseTextField() {
entryField.setText("");
entryField.requestFocus();
}
public static void main(String[] args) {
P2GUI p1GUI;
p1GUI = new P2GUI();
}
}
/////////////////////////////////////////////END///////////////////////////////////////////////////////////////////////////////
隐蔽等级
package p2gui;
import java.util.Stack;
import javax.swing.JOptionPane;
/**
*
* @author Mike
*/
public class Convert {
/**
* Checks if the input is operator or not
* @param c input to be checked
* @return true if operator
*/
private boolean operator(char c){
return c == '+' || c == '-' || c == '*' || c =='/' || c == '^';
}
/**
* Converts any postfix to infix
* @param postfix String expression to be converted
* @return String infix expression produced
*/
public String convert(String postfix){
Stack<String> stackIt = new Stack<>();
for (int i = 0; i < postfix.length(); i++) {
char c = postfix.charAt(i);
if (operator(c)) {
String b = stackIt.pop();
String a = stackIt.pop();
stackIt.push("(" + a + c + b + ")");
} else {
stackIt.push("" + c);
}
}
return stackIt.pop();
}
}
答案 0 :(得分:0)
您正在使用的正则表达式String
"\\d+"
检查String
仅是否包含数字,但您要检查它是否还包含运算符。以下正则表达式应该足够(需要一位数和一位运算符):
if (fullString.matches(".*\\d+[-+*/]*.*")) {
// Code here...
}
答案 1 :(得分:0)
.*
检查字符串是否与正则匹配正则表达式。如果要在字符串中检查匹配,则表达式的两端都需要if (fullString.matches(".*\\d+.*") && fullString.matches(".*[-+*/].*")){
:
if (fullString.matches("[-+*/\\d]+") && fullString.matches(".*\\d.*") && fullString.matches(".*[-+*/].*")){
但是,允许用户输入任何内容,只要它在某处至少有一个数字,并且至少有一个操作符在某处。他们可以输入他们喜欢的任何东西,只要它包括这两件。
如果您想检查他们是否仅输入了数字和运算符,并至少输入了其中一个:
if
表示&#34;只有数字和运算符,以及至少一个数字和至少一个运算符,任何顺序。&#34;
我不知道你是否想要更多地锁定它(数字然后运算符,或运算符然后数字;只有一个运算符;不要&#39; t允许数字,然后是运算符,然后是更多数字;等等),但问题{{1}}的基本问题是&#34;整个字符串&#34;的事情。