将“6.00000000000000”转换为最简单的方法是什么为整数属性

发布于 2024-09-27 04:33:03 字数 214 浏览 1 评论 0原文

我有一个带有年龄属性 (int) 的 Person 对象,

我正在解析一个文件,该值的格式为“6.00000000000000”,

在 C# 中将此字符串转换为 int 的最佳方法是什么

Convert.ToInt32() or Int.Parse() gives me an exception:

?正确的格式。

i have an Person object with an age property (int)

i am parsing a file and this value is coming in this format "6.00000000000000"

what is the best way to convert this string into an int in C#

Convert.ToInt32() or Int.Parse() gives me an exception:

Input string was not in a correct format.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

牵强ㄟ 2024-10-04 04:33:03

这取决于您对输入数据始终遵循此格式的信心。以下是一些替代方案:

string text = "6.00000000"

// rounding will occur if there are digits after the decimal point
int age = (int) decimal.Parse(text); 

// will throw an OverflowException if there are digits after the decimal point  
int age = int.Parse(text, NumberStyles.AllowDecimalPoint);

// can deal with an incorrect format
int age;
if(int.TryParse(text, NumberStyles.AllowDecimalPoint, null, out age))
{             
   // success
}
else
{
   // failure
} 

编辑:在注释后将 double 更改为 decimal

It depends on how confident you are that the input-data will always adhere to this format. Here are some alternatives:

string text = "6.00000000"

// rounding will occur if there are digits after the decimal point
int age = (int) decimal.Parse(text); 

// will throw an OverflowException if there are digits after the decimal point  
int age = int.Parse(text, NumberStyles.AllowDecimalPoint);

// can deal with an incorrect format
int age;
if(int.TryParse(text, NumberStyles.AllowDecimalPoint, null, out age))
{             
   // success
}
else
{
   // failure
} 

EDIT: Changed double to decimal after comment.

蘸点软妹酱 2024-10-04 04:33:03
int age = (int) double.Parse(str);
int age = (int) decimal.Parse(str);
int age = (int) double.Parse(str);
int age = (int) decimal.Parse(str);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文