【发布时间】:2018-10-12 17:24:28
【问题描述】:
我有一个带负浮点数的字符串,它看起来像这样:
-1.0
我需要将它转换为浮点数,所以它必须是:
-1.0f
我试过了:
bool isNegative = false; //float in my string isnt a negative
string mystr = "-1.0"; //my string
float myfloat = 0.0f; //my float
if(mystr.Contains("-"))
{
isNegative = true;
mystr.Replace("-");
} //if my string is negative,set a bool to true,and remove - from string
if(isNegative==true)
{
myfloat = float.Parse(mystr) * -1.0
} //if bool is true(is says number in string is negative),parse string to float and make it negative
else
{
myfloat = float.Parse(mystr)
} //if bool is false(number in string isnt negative),just parse a number
我认为该代码正在运行,但它会引发System.FormatException,所以我认为我得到了那个异常,因为代码无法解析带有点的字符串(.)。我在float.Parse 方法处遇到了一个异常。
如果你愿意,我会显示一个完整的代码,我出错的地方,上面的代码只是我的真实代码的概念,有真实的代码:
bool redNeg = false; //red number isnt negative
bool greenNeg = false; //blue number isnt negative
bool blueNeg = false; //green number isnt negative
string[] args = GetArgs.ExtractArguments(LineText); //get strings from "translate(0.0,0.0,-1.0);"
string red = args[0]; //string1,default is 0.0
string green = args[1]; //string2,default is 0.0
string blue = args[2]; //string3,default is -1.0
if (red.Contains("-"))
{
redNeg = true;
red.Replace("-", "");
} //if string1 is negative,set negative bool to true and remove - from string
if (green.Contains("-"))
{
greenNeg = true;
green.Replace("-", "");
} //if string2 is negative,set negative bool to true and remove - from string
if (blue.Contains("-"))
{
blueNeg = true;
blue.Replace("-", "");
} //if string3 is negative,set negative bool to true and remove - from string
float redd = 0.0f; //default float of string1
float greenn = 0.0f; //default float of string2
float bluee = 0.0f; //default float of string3
if (redNeg==true)
{
redd = float.Parse(red) * -1.0f;
} //if negative bool of string1 is true,set float to negative
else
{
redd = float.Parse(red);
} //if its not,parse it
if (greenNeg == true)
{
greenn = float.Parse(red) * -1.0f;
} //if negative bool of string2 is true,set float to negative
else
{
greenn = float.Parse(green);
} //if its not,parse it
if (blueNeg == true)
{
bluee = float.Parse(red) * -1.0f;
} //if negative bool of string3 is true,set float to negative
else
{
bluee = float.Parse(blue);
} //if its not,parse it
gl.Translate((float)redd, (float)greenn,(float) bluee); //render function,dont touch it
在一些 cmets 之后,我将我的代码编辑为这个:
var fmt = new NumberFormatInfo();
fmt.NegativeSign = "−";
//LineText is "translate(0.0,0.0,-1.0);
string[] args = GetArgs.ExtractArguments(LineText); //get strings from "translate(0.0,0.0,-1.0);"
string red = args[0]; //string1,default is 0.0
string green = args[1]; //string2,default is 0.0
string blue = args[2]; //string3,default is -1.0
float redd = float.Parse(red,fmt); //default float of string1
float greenn = float.Parse(green, fmt); //default float of string2
float bluee = float.Parse(blue, fmt); //default float of string3
gl.Translate((float)redd, (float)greenn,(float) bluee); //render function,dont touch it
但我仍然有 FormatException,但现在我得到了它
float bluee = float.Parse(blue, fmt); //default float of string3
这是一个带负数的字符串。
【问题讨论】:
-
为什么需要
f?仅在定义浮点变量时才需要,当您解析其隐含的字符串时。另外,你的格式是可怕的 -
查看 gl.translate 方法,因此该方法只接受浮点类型,
f。 -
究竟是 which
float.Parse调用引发了上述异常?你粘贴了哪一行? -
很不清楚你的问题是什么。
float.Parse("-1.0")将完全按照您的预期工作(即解析字符串并输出值为-1 的浮点数)。如果您在使用 float.Parse 时遇到问题,那么您需要准确地向我们展示您传递给导致问题的 parse 方法的输入,然后我们可能能够帮助您诊断问题。如果您不知道传递给 float.Parse 的值是什么,那么您真的需要研究如何使用调试器来查找此信息。 -
@meowgoesthedog:
float.Parse(" -1.0 ")将正确解析,因此空白不应成为问题。
标签: c# string exception runtime-error formatexception