Parse v. TryParse(Parse 诉 TryParse)
问题描述
Parse() 和 TryParse() 有什么区别?
What is the difference between Parse() and TryParse()?
int number = int.Parse(textBoxNumber.Text);
// The Try-Parse Method
int.TryParse(textBoxNumber.Text, out number);
是否有某种形式的错误检查,例如 Try-Catch 块?
Is there some form of error-checking like a Try-Catch Block?
推荐答案
Parse
如果无法解析值会抛出异常,而 TryParse
返回 bool
表示是否成功.
Parse
throws an exception if it cannot parse the value, whereas TryParse
returns a bool
indicating whether it succeeded.
TryParse
不只是 try
/catch
在内部 - 它的全部意义在于它是在没有异常的情况下实现的,因此速度很快.事实上,它最有可能实现的方式是,Parse
方法内部会调用 TryParse
,然后如果返回 false
则抛出异常.
TryParse
does not just try
/catch
internally - the whole point of it is that it is implemented without exceptions so that it is fast. In fact the way it is most likely implemented is that internally the Parse
method will call TryParse
and then throw an exception if it returns false
.
简而言之,如果您确定该值有效,请使用 Parse
;否则使用 TryParse
.
In a nutshell, use Parse
if you are sure the value will be valid; otherwise use TryParse
.
这篇关于Parse 诉 TryParse的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Parse 诉 TryParse


基础教程推荐
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01