我想要做的是,从文本框中获取用户输入,将其转换为int然后使用它。我得到了一切工作,除了尝试和捕获。如果这个人写了一封信而不是一个数字。使用下面的代码它总是捕获一些东西。我不知道什么是捕获的东西。我已经取出了bool测试,如果我写了一封信,它只会抛出异常然后去发出哔哔声。然后等待有效输入。 请原谅我凌乱的代码,我还是初学c#程序员:D感谢先进!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
bool tone = false;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
bool test = true;
speedInput.Clear();
beep.Clear();
int beepspeed = 90;
int speed = 100;
string speedtext = this.speedInput.Text;
string beeptext = this.beep.Text;
try
{
test = true;
beepspeed = Convert.ToInt32(beeptext);
speed = Convert.ToInt32(speedtext);
}
catch (Exception)
{
MessageBox.Show("numbers above 37 only!!");
test = false;
}
if (test)
{
for (int i = 0; i < beepspeed; i++)
{
if (this.tone)
{
Random ran = new Random();
int rand = ran.Next(400, 3000);
Console.Beep(rand, speed);
}
else
{
Console.Beep(1000, speed);
}
}
}
}
private void radioButtonYes_CheckedChanged(object sender, EventArgs e)
{
this.tone = true;
}
private void radioButtonNo_CheckedChanged(object sender, EventArgs e)
{
this.tone = false;
}
}
}
答案 0 :(得分:5)
您正在清除button1_click
开头的输入内容speedInput.Clear();
beep.Clear();
然后,当您尝试将空字符串转换为int32时,它将失败
beepspeed = Convert.ToInt32(beeptext);
speed = Convert.ToInt32(speedtext);