C#: Custom casting to a value type

后端 未结 5 2030
不知归路
不知归路 2021-02-14 10:04

Is it possible to cast a custom class to a value type?

Here\'s an example:

var x = new Foo();
var y = (int) x; //Does not compile 

Is i

5条回答
  •  被撕碎了的回忆
    2021-02-14 10:38

    Create an explicit or implicit conversion:

    public class Foo
    {
        public static explicit operator int(Foo instance)
        {
            return 0;
        }
    
        public static implicit operator double(Foo instance)
        {
            return 0;
        }
    }
    

    The difference is, with explicit conversions you will have to do the type cast yourself:

    int i = (int) new Foo();
    

    and with implicit conversions, you can just "assign" things:

    double d = new Foo();
    

    MSDN has this to say:

    "By eliminating unnecessary casts, implicit conversions can improve source code readability. However, because implicit conversions do not require programmers to explicitly cast from one type to the other, care must be taken to prevent unexpected results. In general, implicit conversion operators should never throw exceptions and never lose information so that they can be used safely without the programmer's awareness. If a conversion operator cannot meet those criteria, it should be marked explicit." (Emphasis mine)

提交回复
热议问题