在c#中转换对象类型

前端之家收集整理的这篇文章主要介绍了在c#中转换对象类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我今天遇到了一个问题,我不完全确定为什么它不起作用.

以下代码示例将崩溃:

static void Main(string[] args)
{
     int i32 = 10;
     object obj = i32;
     long i64 = (long)obj;
}

这将导致InvalidCastException.为什么这不起作用? C#不够聪明,不知道该对象实际上是int类型吗?

我已经提出了一个解决方法,但我很好奇为什么上面的代码示例首先不起作用.

谢谢,
蒂姆

解决方法

从盒装Int32到Int64没有可用的转换.
对int进行中间转换应该有效,因为编译器愿意生成
// verify obj is a Boxed int,unBox it,and perform the *statically*
// known steps necessary to convert an int to a long
long i64 = (long) ((int)obj);

但不是(假设)这个:

// Find out what type obj *actually* is at run-time and perform 
// the-known-only-at-run-time steps necessary to produce  
// a long from it,involving *type-specific* IL instructions  
long i64 = (long)obj;

这是Eric Lippert对此的一个blog post.

原文链接:https://www.f2er.com/csharp/101119.html

猜你在找的C#相关文章