我能够创建一个执行逆波兰表示法的函数。该方法的结构很好,我遇到的两个问题是如何获取用户输入的公式textBox1
并在textBox2
. 我已分配给textBox1
变量rpnValue
,但它给出了错误消息A field initializer cannot reference the non-static field, method, or property 'modified_rpn.Form1.textBox1'
。那么我如何再次获取用户输入的公式textBox1
并在多行`textBox2上显示答案(公式=答案)?
代码
namespace rpn
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string rpnValue = textBox1.Text;
private void RPNCalc(rpnValue)
{
Stack<int> stackCreated = new Stack<int>();
try
{
var tokens = rpnValue.Replace("(", " ").Replace(")", " ")
.Split().Where(s => !String.IsNullOrWhiteSpace(s));
foreach (var t in tokens)
{
try
{
stackCreated.Push(Convert.ToInt32(t));
}
catch
{
int store1 = stackCreated.Pop();
int store2 = stackCreated.Pop();
switch (t)
{
case "+": store2 += store1; break;
case "-": store2 -= store1; break;
case "*": store2 *= store1; break;
case "/": store2 /= store1; break;
case "%": store2 %= store1; break;
case "^": store2 = (int)Math.Pow(store1, store2); break;
default: throw new Exception();
}
stackCreated.Push(store2);
}
}
if (stackCreated.Count != 1)
MessageBox.Show("Please check the input");
else
textBox1.Text = stackCreated.Pop().ToString();
}
catch
{
MessageBox.Show("Please check the input");
}
textBox2.AppendText(rpnValue);
textBox1.Clear();
}
private void button1_Click(object sender, EventArgs e)
{
RPNCalc(textBox1, textBox2);
}
}
}