为什么将字符串转换或解析为 int 返回零?
为什么将字符串转换/解析为 int 返回 0/零?
在调试时,使用断点,我可以看到“3”作为字符串值发布到浏览操作,但是当我如上所述转换为 int 时,该值将转换为 int 类型的 0 值。
//
// GET: /Event/Browse
public ActionResult Browse(string category)
{
int id = Convert.ToInt32(category);
// Retrieve Category and its Associated Events from database
var categoryModel = storeDB.Categories.Include("Events").Single(g => g.CategoryId == id);
return View(categoryModel);
}
查看下图以更好地理解:
另一个图像 -categoryModel 在 LINQ 查询上获取 null。
Why converting / parsing string to int return 0 / zero?
On debug, using the breakpoint, I could see "3" posted to browse action as a string value but when i convert to int as above, the value is converted to 0 value of int type.
//
// GET: /Event/Browse
public ActionResult Browse(string category)
{
int id = Convert.ToInt32(category);
// Retrieve Category and its Associated Events from database
var categoryModel = storeDB.Categories.Include("Events").Single(g => g.CategoryId == id);
return View(categoryModel);
}
Take a look at the image below for better understanding:
Another image - categoryModel getting null on LINQ query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 MSDN 上的 Int32.TryParse 此处
From MSDN on Int32.TryParse here
如果您的 Parse() 调用失败并且您的异常未被捕获,或者您没有测试 TryParse() 的返回值,那么 int 变量肯定会保持原样 - 默认初始化为零。
例如,这将使您的 int 保持为零:
因此,请尝试以下操作:
或者看到它优雅地失败:
If your Parse() call fails and your exception is uncaught or you don't test the return value of TryParse(), then surely the int variable would remain as it was - initialized by default to zero.
For example, this would keep your int a zero:
So instead try this:
Or to see it fail gracefully: