/*C#中通过实现IComparable接口对对象数组进行排序*/
using System;
class Student:IComparable
{
private string _name;
private int _age;
public Student(string name,int age)
{
_name = name;
_age = age;
}
public string Name
{
get { return _name; }
set { _name = value; }
}
public int Age
{
get { return _age; }
set { _age = value; }
}
public int CompareTo(object right)
{
if(!(right is Student))
{
throw new ArgumentException(“参数必须为Student类型”);
}
return _name.CompareTo(((Student)right)._name);
}
public override string ToString()
{
return _name;
}
}
class Test
{
static void Main()
{
Student[] arr = new Student[5];
arr[0] = new Student(“张三”,5);
arr[1] = new Student(“李四”,3);
arr[2] = new Student(“王五”,2);
arr[3] = new Student(“马六”,4);
arr[4] = new Student(“钱七”,1);
Array.Sort(arr);
foreach(Student i in arr) //这里的arr没有实现GetEnumerator()方法啊?
{
Console.WriteLine(i + ” ” + i.Age);
}
}
}
解决方案
5
C# 全部的数组都继承自Array,而Array实现了IEnumerable接口
5
namespace System
{
// 摘要:
// 提供创建、操作、搜索和排序数组的方法,因而在公共语言运行时中用作全部数组的基类。
[Serializable]
[ComVisible(true)]
public abstract class Array : ICloneable , IList , ICollection , IEnumerable , IStructuralComparable , IStructuralEquatable
5
var arr = new int[16];
var basetype = arr.GetType( ).BaseType;
你可以本人测试,basetype即System.Array
15
Person personlist = new Person(per);
和Student[] arr = new Student[5]; 是一样的东西?
一个是单个的对象,一个是对象的数组
先好好理解类型吧
10
namespace System
{
// 摘要:
// 提供创建、操作、搜索和排序数组的方法,因而在公共语言运行时中用作全部数组的基类。
[Serializable]
[ComVisible(true)]
public abstract class Array : ICloneable , IList , ICollection , IEnumerable , IStructuralComparable , IStructuralEquatable
这里的arr是自定义的类数组,没有实现IEnumerable接口吧,
C#全部的数组,包括你所谓的自定义的类数组,都是继承自Array
你可以随便写个类
然后测试如下代码:
var arr = new YourClass[16];
var basetype = arr.GetType( ).BaseType;
你再看看basetype 是什么