List是類,實現了IList接口,IList繼承了ICollection,ICollection繼承了IEnumerable,IEnumerable是其中最底層的接口. 實現IEnumerable接口的類,可以使用foreach進行循環讀取. 實現ICollection接口的類,除了可以使用foreach讀取外,還可以直接讀取長度Count 實現IList接口的類,功能較強大,可以使用Add, Remove, Clear, Contain等method. 在傳遞function的參數時,可以使…