我有一个包含在operationComboBox.Text中的字符串,我知道该字符串将是" +"或" - "。然后我可以使用以下代码在2个方程之间执行加法或减法:
if ((operationComboBox.Text == "-"))
{
equation3XCoeff = equations[index1].XCoeff - equations[index2].XCoeff;
equation3YCoeff = equations[index1].YCoeff - equations[index2].YCoeff;
equation3Answer = equations[index1].Answer - equations[index2].Answer;
}
else //if (operationComboBox.Text=="+")
{
equation3XCoeff = equations[index1].XCoeff + equations[index2].XCoeff;
equation3YCoeff = equations[index1].YCoeff + equations[index2].YCoeff;
equation3Answer = equations[index1].Answer + equations[index2].Answer;
}
我的问题是,我可以摆脱if语句并直接在要执行的总和中使用字符串值,以便缩短我的代码吗?它可能不太重要,但我只是喜欢我的代码很短,3个计算几乎是重复的,但是对于符号。
答案 0 :(得分:4)
您无法直接使用它 - 它是一个字符串,不能使用字符串代替运算符。但是根据文本,你可以初始化一些数字变量并在你的等式中使用它:
var coef = operationComboBox.Text == "-" ? -1 : 1;
equation3XCoeff = equations[index1].XCoeff + coef * equations[index2].XCoeff;
equation3YCoeff = equations[index1].YCoeff + coef * equations[index2].YCoeff;
equation3Answer = equations[index1].Answer + coef * equations[index2].Answer;
答案 1 :(得分:0)
我认为你不能,因为你在visual studio中编写的代码没有编译成原始类型'string'。 Visual Studio将无法解释它,它只会看到你在一个偏僻的地方放置了一些随机的原始类型'string'。 你最好试试它,你会发现它不会编译。