我可以转换长为int? [英] Can I convert long to int?

查看:153
本文介绍了我可以转换长为int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想转换 INT

如果的值长> int.MaxValue ,我很高兴地让它环绕。

If the value of long > int.MaxValue, I am happy to let it wrap around.

什么是最好的方法是什么?

What is the best way?

推荐答案

只是做(INT)myLongValue 。它会做你想要什么(丢弃位而采取的LSB)的选中上下文(这是编译器的默认值)。它会扔发生OverflowException 检查背景下,如果该值不以 INT适合

Just do (int)myLongValue. It'll do exactly what you want (discarding MSBs and taking LSBs) in unchecked context (which is the compiler default). It'll throw OverflowException in checked context if the value doesn't fit in an int:

int myIntValue = unchecked((int)myLongValue);

这篇关于我可以转换长为int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆