c#自定义类的指定字段排序

类Chair的定义代码如下:

public class Chair
{
    	public double myPrice;
    	public string myVendor, myID;
    	public Chair() { }
   	 	public Chair(double price, string vendor, string sku)
    	{
        	myPrice = price;
        	myVendor = vendor;
        	myID = sku;
    	}
}

要求通过调用Array.Sort方法对Chair 对象数组按myID的unicode码值进行由大到小排序。

//通过调用Array.Sort方法对Chair对象数组按myID的unicode码值进行由大到小排序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp6
{
    class Chair : IComparable
    {
        public double myPrice;
        public string myVendor, myID;
        public Chair() { }
        public Chair(double price, string vendor, string id)
        {
            myPrice = price;
            myVendor = vendor;
            myID = id;
        }

        int IComparable.CompareTo(Object obj)
        {
            if (obj is Chair)
            {
                Chair castObj = (Chair)obj;
                if ((string.CompareOrdinal(this.myID,castObj.myID) < 0)) return 1;
                else if ((string.CompareOrdinal(this.myID, castObj.myID)) > 0) return -1;
                else return 0;
            }
            throw new ArgumentException("object is not a Chair");
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Chair[] chairs = new Chair[4];
            chairs[0] = new Chair(150.0, "gdne", "9988");
            chairs[1] = new Chair(250.0, "Lan", "w");
            chairs[2] = new Chair(100.0, "lne", "汉");
            chairs[3] = new Chair(120.0, "Harris", "939");
            Array.Sort(chairs);
            foreach (Chair c in chairs)
            {Console.WriteLine(c.myPrice + " " + c.myVendor + " " + c.myID);}
        }
    }
}
  • 2
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值