📜  C#中的UInt32.CompareTo()方法(带示例)

📅  最后修改于: 2021-05-29 16:51:36             🧑  作者: Mango

UInt32.CompareTo方法用于将当前实例与指定对象或另一个UInt32实例进行比较。它返回一个整数,该整数显示当前实例的值是小于,等于还是大于指定对象或另一个UInt32实例的值。此方法的重载列表中有2种方法,如下所示:

  • CompareTo(UInt32)方法
  • CompareTo(Object)方法

UInt32.CompareTo(UInt32)方法

此方法用于将当前实例与指定的32位无符号整数进行比较,并返回一个整数,该整数显示当前实例的值是否小于,等于或大于指定的32位无符号整数的值。

句法:

public int CompareTo (uint value);

在这里,它需要一个无符号整数进行比较。

返回值:返回一个32位带符号的数字,指示当前实例和value参数的相对值,如下所示:

  • 小于零:如果当前实例<值
  • 零:如果当前实例=值
  • 大于零:如果当前实例>值

下面的程序说明了UInt32.CompareTo(UInt32)方法的用法

范例1:

// C# program to demonstrate the
// UInt32.CompareTo(UInt32) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // Declaring and initializing value1
        uint value1 = 1231;
  
        // Declaring and initializing value2
        uint value2 = 5123;
  
        // using CompareTo() method
        int status = value1.CompareTo(value2);
  
        // checking the status
        if (status > 0)
            Console.WriteLine("{0} is greater than {1}",
                                        value1, value2);
        else if (status < 0)
            Console.WriteLine("{0} is less than {1}",
                                     value1, value2);
        else
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
    }
}
输出:
1231 is less than 5123

范例2:

// C# program to demonstrate the
// UInt32.CompareTo(UInt32) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        // calling get() method
        get(34425, 7343);
        get(340, 67520);
        get(7810, 2890);
        get(700, 700);
    }
  
    // defining get() method
    public static void get(uint value1,
                           uint value2)
    {
  
        // using CompareTo() method
        int status = value1.CompareTo(value2);
  
        // checking the status
        if (status > 0)
            Console.WriteLine("{0} is greater than {1}",
                                        value1, value2);
        else if (status < 0)
            Console.WriteLine("{0} is less than {1}",
                                     value1, value2);
        else
            Console.WriteLine("{0} is equal to {1}",
                                    value1, value2);
    }
}
输出:
34425 is greater than 7343
340 is less than 67520
7810 is greater than 2890
700 is equal to 700

UInt32.CompareTo(Object)方法

此方法用于将当前实例与指定对象进行比较,并返回一个整数,该整数指示当前实例的值是小于,等于还是大于对象的值。

句法:

public int CompareTo (object value);

在这里,它需要对象与该实例进行比较,或者为null。

返回值:返回一个32位带符号的数字,指示当前实例和value参数的相对值,如下所示:

  • 小于零:如果当前实例<值
  • 零:如果当前实例=值
  • 大于零:如果当前实例>值

异常:如果value不是UInt32 ,则抛出ArgumentException

下面的程序说明了UInt32.CompareTo(Object)方法的用法

范例1:

// C# program to demonstrate the
// UInt32.CompareTo(Object) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // Declaring and initializing value1
            uint value1 = 11220;
  
            // Declaring and initializing value2
            object value2 = (uint)2347.84376;
  
            // using CompareTo() method
            int status = value1.CompareTo(value2);
  
            // checking the status
            if (status > 0)
                Console.WriteLine("{0} is greater than {1}",
                                  value1, value2);
  
            else if (status < 0)
                Console.WriteLine("{0} is less than {1}",
                                  value1, value2);
            else
                Console.WriteLine("{0} is equal to {1}",
                                  value1, value2);
        }
  
        catch (ArgumentException e)
        {
            Console.WriteLine("value2 must be null"+
                       " or an instance of UInt32");
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
11220 is greater than 2347

示例2:对于ArgumentException

// C# program to demonstrate the
// UInt32.CompareTo(Object) Method
using System;
using System.Globalization;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        try {
  
            // Declaring and initializing value1
            uint value1 = 1790;
  
            // Declaring and initializing value2
            object value2 = 1 / 7;
  
            // using CompareTo() method
            int status = value1.CompareTo(value2);
  
            // checking the status
            if (status > 0)
                Console.WriteLine("{0} is greater than {1}",
                                  value1, value2);
  
            else if (status < 0)
                Console.WriteLine("{0} is less than {1}",
                                  value1, value2);
            else
                Console.WriteLine("{0} is equal to {1}",
                                  value1, value2);
        }
  
        catch (ArgumentException e)
        {
            Console.WriteLine("value2 must be null"+
                       " or an instance of UInt32");
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
value2 must be null or an instance of UInt32
Exception Thrown: System.ArgumentException

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.uint32.compareto?view=netstandard-2.1