關於C#中泛型型別參數條件約束(where T : class)

來源:互聯網
上載者:User

標籤:支援   約束   net   pre   result   結構   wpf   class類   alt   

.NET支援的型別參數約束有以下五種:
where T : struct                               | T必須是一個結構類型
where T : class                                 | T必須是一個Class類型
where T : new()                               | T必須要有一個無參建構函式
where T : NameOfBaseClass              | T必須繼承名為NameOfBaseClass的類
where T : NameOfInterface               | T必須實現名為NameOfInterface的介面

如下在WPF中擷取當前表單(或者使用者控制項)的父表單,限定泛型必須為Class:

private void btnCancel_Click(object sender, RoutedEventArgs e)        {            Window hostWindow = GetParent<Window>(sender as Button);            if (hostWindow != null)            {                hostWindow.Close();            }        }        public static T GetParent<T>(UIElement  uiElement) where T : class        {            T result;            var dp = LogicalTreeHelper.GetParent(uiElement);            result = dp as T;            while (result == null)            {                dp = LogicalTreeHelper.GetParent(dp);                result = dp as T;                if (dp == null) return null;            }            return result;        }

關於C#中泛型型別參數條件約束(where T : class)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.