icomparable

    2熱度

    3回答

    我有這個功課。我是初學C#程序,現在學習C#和Java 作業:寫靜態方法得到一個Drink []數組,其中的AlcoholDrink得到了不同的酒精值。該方法返回一個包含三個最高酒精值的數組!如果數組中沒有AlcoholDrink,那麼該方法返回一個空引用! 我曾嘗試寫入該方法中,但它不能正常工作... 原因在SZ [1] =(AlcoholDrink)T [1];這是一個飲料對象(非酒精),我不

    3熱度

    3回答

    我有一個簡單的問題,但我只是不明白我在這裏或MSDN找到的任何示例。 (我還是C#和所有數據集函數的新手)。 我有一個數據表「tblRoom」,它的columms是「建設」,「公寓」和「房間」,他們都是整數和表的主鍵(這是公寓的弱實體(這是弱實體建築)沒有其他屬性/列)。 我也有DataRow[] roomCollection,在使用此代碼的建築物選擇特定的公寓: roomCollection =

    9熱度

    3回答

    IComparable的行爲,我在我的一個類實現IComparable和IComprable<T>。是否有關於如何給出一個空參數時,在每種情況下CompareTo方法應該表現的任何建議?如果它返回一個正數或拋出ArgumentNullException?或者,這種行爲可能因實施課程而異? 我看到了MSDN文檔(here和here),但在這個問題上沒有什麼可說的。任何幫助將不勝感激。

    0熱度

    2回答

    這是一個weired問題,我已經實現簡單快速排序如下.. static void Main(string[] args) { List<int> unsorted = new List<int> { 1, 3, 5, 7, 9, 8, 6, 4, 2 }; List<int> sorted = quicksort(unsorted); Console

    7熱度

    2回答

    實現在.NET類似IComparable的什麼排序算法並使用.NET實際的基礎數據進行排序時 誰能請指教?也是使用可自定義或可選擇的算法?

    -2熱度

    2回答

    我無法實施Icomparable CompareTo根據稅收比較納稅人對象..有人可以幫助我實現納稅人類的icomparable實現? 我想實現像這裏的接口了IComparable是新話題,me..please幫助http://www.dotnetperls.com/icomparable using System; using System.Collections.Generic; usin

    1熱度

    1回答

    所以我有以下struct public struct Foo { public readonly int FirstLevel; public readonly int SecondLevel; public readonly int ThirdLevel; public readonly int FourthLevel; } 某處我下面 var s

    0熱度

    4回答

    我想寫出像這樣的代碼: if (obj.IsComparableTo(integer)) Console.Write("successed"); 這可能嗎?如果沒有,是否有另外一種方法來確定這一點?

    0熱度

    1回答

    可能重複: When to use IComparable<T> Vs. IComparer<T> 的IComparer同時適用於兩種情況。

    6熱度

    4回答

    大多數人在編寫實現IComparable <T>的申請類型(類)時,使用null比任何實際對象都少的約定。但是,如果你嘗試使用相反的協定,一些有趣的事情發生了: using System; using System.Collections.Generic; namespace SortingNulls { internal class Child : IComparable<Ch