C#中explicit与implicit的深入理解
前言
今天在研究公司项目框架的时候看到了下面的用法,public static implicit operator jsondata(int data);
。貌似很久没用过这种隐式转换的写法了,因此重新温习一下c#中转换相关的知识。
explicit 和 implicit 属于转换运算符,如用这两者可以让我们自定义的类型支持相互交换
explicti 表示显式转换,如从 a -> b 必须进行强制类型转换(b = (b)a)
implicit 表示隐式转换,如从 b -> a 只需直接赋值(a = b)
implicit
implicit 关键字用于声明隐式的用户自定义的类型转换运算符。 如果可以确保转换过程不会造成数据丢失,则可使用该关键字在用户定义类型和其他类型之间进行隐式转换。
使用隐式转换操作符之后,在编译时会跳过异常检查,所以隐式转换运算符应当从不引发异常并且从不丢失信息,否则在运行时会出现一些意想不到的问题。
示例
class digit { public digit(double d) { val = d; } public double val; // ...other members // user-defined conversion from digit to double public static implicit operator double(digit d) { return d.val; } // user-defined conversion from double to digit public static implicit operator digit(double d) { return new digit(d); } } class program { static void main(string[] args) { digit dig = new digit(7); //this call invokes the implicit "double" operator double num = dig; //this call invokes the implicit "digit" operator digit dig2 = 12; console.writeline("num = {0} dig2 = {1}", num, dig2.val); console.readline(); } }
隐式转换可以通过消除不必要的强制转换来提高源代码的可读性。 但是,因为隐式转换不需要程序员将一种类型显式强制转换为另一种类型,所以使用隐式转换时必须格外小心,以免出现意外结果。 一般情况下,隐式转换运算符应当从不引发异常并且从不丢失信息,以便可以在程序员不知晓的情况下安全使用它们。 如果转换运算符不能满足那些条件,则应将其标记为 explicit。 有关详细信息,请参阅。
explicit显示转换
explicit 关键字声明必须通过显示的调用用户定义的类型转换运算符来进行转换。
以下示例定义从 fahrenheit 类转换为 celsius 类的运算符。 必须在 fahrenheit 类或 celsius 类中定义运算符:
public static explicit operator celsius(fahrenheit fahr) { return new celsius((5.0f / 9.0f) * (fahr.degrees - 32)); }
如下所示,调用用户定义的转换运算符来强制转换:
fahrenheit fahr = new fahrenheit(100.0f); console.write($"{fahr.degrees} fahrenheit"); celsius c = (celsius)fahr;
此转换运算符从源类型转换为目标类型。 源类型提供转换运算符。 不同于隐式转换,显式转换运算符必须通过转换的方式来调用。 如果转换操作会导致异常或丢失信息,则应将其标记为 explicit。 这可阻止编译器静默调用可能产生意外后果的转换操作。
省略转换将导致编译时错误 cs0266。
有关详细信息,请参阅。
示例
下面的示例提供了 fahrenheit 和 celsius 类,其中每个类均提供转换为其他类的显式转换运算符。
class celsius { public celsius(float temp) { degrees = temp; } public float degrees { get; } public static explicit operator fahrenheit(celsius c) { return new fahrenheit((9.0f / 5.0f) * c.degrees + 32); } } class fahrenheit { public fahrenheit(float temp) { degrees = temp; } public float degrees { get; } public static explicit operator celsius(fahrenheit fahr) { return new celsius((5.0f / 9.0f) * (fahr.degrees - 32)); } } class mainclass { static void main() { fahrenheit fahr = new fahrenheit(100.0f); console.write($"{fahr.degrees} fahrenheit"); celsius c = (celsius)fahr; console.write($" = {c.degrees} celsius"); fahrenheit fahr2 = (fahrenheit)c; console.writeline($" = {fahr2.degrees} fahrenheit"); } } // 输出: // 100 fahrenheit = 37.77778 celsius = 100 fahrenheit
示例
下面的示例定义结构 digit,它表示单个的十进制数字。 将运算符定义为从 byte 到 digit 的转换,但由于并非所有字节都可转换为 digit,因此该转换应该应用显式转换。
struct digit { byte value; public digit(byte value) { if (value > 9) { throw new argumentexception(); } this.value = value; } // 定义从byte到digit的显示转换 explicit operator: public static explicit operator digit(byte b) { digit d = new digit(b); console.writeline("转换已完成"); return d; } } class explicittest { static void main() { try { byte b = 3; digit d = (digit)b; // 显示转换 } catch (exception e) { console.writeline("{0} 捕获到一成.", e); } } } /* 输出: 转换已完成 */
参考资料
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。
上一篇: (1)Linux文件系统的目录组成