gpt4 book ai didi

c# - editBox.Text 到 int - 当我插入数字以外的内容时,我的程序崩溃

转载 作者:行者123 更新时间:2023-12-03 03:17:35 24 4
gpt4 key购买 nike

我有 C#.NET WF 中的简单计算器。但是当我向编辑框中插入数字以外的内容时,我的程序崩溃了。我应该如何避免这种崩溃?

private void doMath()
{
int n1 = Int32.Parse(editBox1.Text);
int n2 = Int32.Parse(editBox2.Text);

String o = operation.Text;

switch(o)
{
case "+": result.Text = (n1 + n2).ToString();
break;
case "-": result.Text = (n1 - n2).ToString();
break;
case "*": result.Text = (n1 * n2).ToString();
break;
case "/": result.Text = (n1 / n2).ToString();
break;
case "%": result.Text = (n1 % n2).ToString();
break;
default: result.Text = "No operator selected.";
break;
}
}//end doMath

private void editBox1_TextChanged(object sender, EventArgs e)
{
doMath();
}

最佳答案

Int32.Parse 依赖于您一开始就有一个 int 的事实。因此尝试解析 123 会起作用,但尝试解析 123e 会抛出异常。

使用Int32.TryParse将要求输出int,但如果您传递的内容不是int,则会处理丑陋的异常,并且返回该操作会告诉您是否成功。如果是,您将在 out 参数中获得值,如果不是,它将具有该类型的默认值(在我们的例子中为 0)。

int i;
bool b1 = Int32.TryParse("123", out i); // i = 123, b = true;
bool b2 = Int32.TryParse("123e", out i); // i = 0, b = false;
i = Int32.Parse("123"); // i = 123
i = Int32.Parse("123e"); // you got an ugly exception

关于c# - editBox.Text 到 int - 当我插入数字以外的内容时,我的程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30571818/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com