色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

array類中對一維數組排序的方法

阮建安2年前15瀏覽0評論

array類中對一維數組排序的方法?

其實就是讓你寫一個類,實現IComparable接口,再通過調用Sort方法對該類的實例(一維數組)排序。

class Student:IComparable

{

private string name;

private int score;

public int CompareTo(object obj)

{

Student _obj = obj as Student;

if (_obj != null)

{

return this.score.CompareTo(_obj.score);

}

else

throw new ArgumentException("Object is not a Student !");

php語言數組排序方法,array類中對一維數組排序的方法