C# 顯式轉換關鍵字 explicit

不一樣於隱式轉換,顯式轉換運算符必須經過轉換的方式來調用。 若是轉換操做會致使異常或丟失信息,則應將其標記爲 explicit。 這可阻止編譯器靜默調用可能產生意外後果的轉換操做。
省略轉換將致使編譯時錯誤 CS0266。express

該引用摘自:explicit(C# 參考)編程

顯示轉換關鍵字explicit能向閱讀代碼的每一個人清楚地指示您要轉換類型。ide

該引用摘自:使用轉換運算符(C# 編程指南)ui

仍以Student爲例,取語文和數學成績的和,不使用explicitcode

class Student
    {
        /// <summary>
        /// 語文成績
        /// </summary>
        public double Chinese { get; set; }

        /// <summary>
        /// 數學成績
        /// </summary>
        public double Math { get; set; }
    }

求和:ci

class Program
    {
        static void Main(string[] args)
        {
            var a = new Student
            {
                Chinese = 90.5d,
                Math = 88.5d
            };

            //a的總成績 語文和數據的總分數
            Console.WriteLine(a.Chinese + a.Math);          
        }
    }

使用explicitget

class Student
    {
        /// <summary>
        /// 語文成績
        /// </summary>
        public double Chinese { get; set; }

        /// <summary>
        /// 數學成績
        /// </summary>
        public double Math { get; set; }

        public static explicit operator double(Student a)
        {
            return a.Chinese + a.Math;
        }
    }

求和:編譯器

class Program
    {
        static void Main(string[] args)
        {
            var a = new Student
            {
                Chinese = 90.5d,
                Math = 88.5d
            };

            //a的總成績 語文和數據的總分數
            Console.WriteLine((double)a);
        }
    }
相關文章
相關標籤/搜索