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
基础教程推荐
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
