zoukankan      html  css  js  c++  java
  • 数据类型转换函数

    Background

    Two popular solutions to the problem of type conversion are to use System.Convert.ChangeType, or to obtain System.ComponentModel.TypeConverter and call its ConvertFrom method. The first method breaks when you try converting a value type T to System.Nullable<T>; the second one breaks when you try converting different numeric types, for example, float to double. These limitations appear especially frustrating, because the CLR has built-in capabilities to perform both types of conversion.

    One way of using these type casting capabilities is to build a LINQ lambda expressioncompile it into a Func<object,object>, and then use the compiled delegate every time we need to convert between two types.

    public static class TypeCast {
    // This is the method exposing the rest of the functionality
    public static object Cast(this Type type, object obj) {
    return GetConverter(type, obj)(obj);
    }
    private static readonly IDictionary&lt;PairOfTypes,Func&lt;object,object>> converters =
    new Dictionary&lt;PairOfTypes,Func&lt;object,object>>();
    private static readonly ParameterExpression convParameter =
    Expression.Parameter(typeof(object), "val");
    // This is the method with the "guts" of the implementation
    [MethodImpl(MethodImplOptions.Synchronized)]
    private static Func&lt;object,object> GetConverter(Type targetType, object val) {
    var fromType = val != null ? val.GetType() : typeof(object);
    var key = new PairOfTypes(fromType, targetType);
    Func&lt;object,object> res;
    if (converters.TryGetValue(key, out res)) {
    return res;
    }
    res = (Func&lt;object,object>)Expression.Lambda(
    Expression.Convert(
    Expression.Convert(
    Expression.Convert(
    convParameter
    , fromType
    )
    , targetType
    )
    , typeof(object)
    )
    , convParameter
    ).Compile();
    converters.Add(key, res);
    return res;
    }
    // This class provides Equals and GetHashCode
    // for a pair of System.Type objects.
    private class PairOfTypes {
    private readonly Type first;
    private readonly Type second;
    public PairOfTypes(Type first, Type second) {
    this.first = first;
    this.second = second;
    }
    public override int GetHashCode() {
    return 31*first.GetHashCode() + second.GetHashCode();
    }
    public override bool Equals(object obj) {
    if (obj == this) {
    return true;
    }
    var other = obj as PairOfTypes;
    if (other == null) {
    return false;
    }
    return first.Equals(other.first)
    && second.Equals(other.second);
    }
    }
    }

    Now, you can use the Cast method like this:

    double? x = typeof(double?).Cast(1.0);
    int y = typeof(int).Cast(1.2345);

  • 相关阅读:
    第五章 项目范围管理
    一位华为IT总监的12大职场经验谈
    接到面试通知后该做什么
    经验借鉴:外包失败三条血泪经验分享
    项目范围管理收集需求
    绝对不能对老板说的十句傻话
    项目整合实施整体变更控制
    项目整合结束项目或阶段
    9招助你夺取更高职位
    IT人写好简历的原则与方法
  • 原文地址:https://www.cnblogs.com/sjqq/p/8277761.html
Copyright © 2011-2022 走看看