String..::.Compare Method (String, String)

简介: 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/chinahuyong/article/details/2896249 String.
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/chinahuyong/article/details/2896249
String . . :: .Compare Method (String, String)

Updated: November 2007

Compares two specified String objects and returns an integer that indicates their relationship to one another in the sort order.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Visual Basic (Declaration)
Public Shared Function Compare ( _
    strA As String, _
    strB As String _
) As Integer
Visual Basic (Usage)
Dim strA As String
Dim strB As String
Dim returnValue As Integer

returnValue = (strA, _
    strB)
C#
public static int Compare(
    string strA,
    string strB
)
Visual C++
public:
static int Compare(
    String^ strA, 
    String^ strB
)
J#
public static int Compare(
    String strA,
    String strB
)
JScript
public static function Compare(
    strA : String, 
    strB : String
) : int

Parameters

strA
Type: System..::.String

The first String.

strB
Type: System..::.String

The second String.

Return Value

Type: System..::.Int32

A 32-bit signed integer indicating the lexical relationship between the two comparands.

Value

Condition

Less than zero

strA is less than strB.

Zero

strA equals strB.

Greater than zero

strA is greater than strB.

The comparison uses the current culture to obtain culture-specific information such as casing rules and the alphabetic order of individual characters. For example, a culture could specify that certain combinations of characters be treated as a single character, or uppercase and lowercase characters be compared in a particular way, or that the sorting order of a character depends on the characters that precede or follow it.

The comparison is performed using word sort rules. For more information about word, string, and ordinal sorts, see System.Globalization..::.CompareOptions.

One or both comparands can be nullNothingnullptra null reference (Nothing in Visual Basic). By definition, any string, including the empty string (""), compares greater than a null reference; and two null references compare equal to each other.

The comparison terminates when an inequality is discovered or both strings have been compared. However, if the two strings compare equal to the end of one string, and the other string has characters remaining, then the string with remaining characters is considered greater. The return value is the result of the last comparison performed.

Unexpected results can occur when comparisons are affected by culture-specific casing rules. For example, in Turkish, the following example yields the wrong results because the file system in Turkish does not use linguistic casing rules for the letter 'i' in "file".

 static bool IsFileURI(String path)
 { 
    return ((path, 0, "file:", 0, 5, true) == 0);
 }
Visual Basic
 Shared Function IsFileURI(ByVal path As String) As Boolean
    If (path, 0, "file:", 0, 5, True) = 0 Then
       Return True
    Else
       Return False
    End If
 End Function

Compare the path name to "file" using an ordinal comparison. The correct code to do this is as follows:

 static bool IsFileURI(String path)
 { 
    return ((path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) == 0);
 }
Visual Basic
Shared Function IsFileURI(ByVal path As String) As Boolean
    If (path, 0, "file:", 0, 5, StringComparison.OrdinalIgnoreCase) = 0 Then
       Return True
    Else
       Return False
    End If
 End Function

In the following code example, the ReverseStringComparer class demonstrates how you can evaluate two strings with the Compare method.

Visual Basic
Imports System
Imports System.Text
Imports System.Collections



Public Class SamplesArrayList


    Public Shared Sub Main()
        Dim myAL As New ArrayList()
        ' Creates and initializes a new ArrayList.
        myAL.Add("Eric")
        myAL.Add("Mark")
        myAL.Add("Lance")
        myAL.Add("Rob")
        myAL.Add("Kris")
        myAL.Add("Brad")
        myAL.Add("Kit")
        myAL.Add("Bradley")
        myAL.Add("Keith")
        myAL.Add("Susan")

        ' Displays the properties and values of    the    ArrayList.
        Console.WriteLine("Count: {0}", myAL.Count)
        PrintValues("Unsorted", myAL)
        myAL.Sort()
        PrintValues("Sorted", myAL)
        Dim comp as New ReverseStringComparer
        myAL.Sort(comp)
        PrintValues("Reverse", myAL)

        Dim names As String() = CType(myAL.ToArray(GetType(String)), String())
    End Sub 'Main



    Public Shared Sub PrintValues(title As String, myList As IEnumerable)
        Console.Write("{0,10}: ", title)
        Dim sb As New StringBuilder()
        Dim s As String
        For Each s In  myList
            sb.AppendFormat("{0}, ", s)
        Next s
        sb.Remove(sb.Length - 2, 2)
        Console.WriteLine(sb)
    End Sub 'PrintValues
End Class 'SamplesArrayList

Public Class ReverseStringComparer 
  Implements IComparer

     Function Compare(x As Object, y As Object) As Integer implements IComparer.Compare
        Dim s1 As String = CStr (x)
        Dim s2 As String = CStr (y)

        'negate the return value to get the reverse order
        Return - [String].Compare(s1, s2)

    End Function 'Compare
End Class 'ReverseStringComparer


using System;
using System.Text;
using System.Collections;

public class SamplesArrayList  {

    public static void Main()  {
        // Creates and initializes a new ArrayList.
        ArrayList myAL = new ArrayList();
        myAL.Add("Eric");
        myAL.Add("Mark");
        myAL.Add("Lance");
        myAL.Add("Rob");
        myAL.Add("Kris");
        myAL.Add("Brad");
        myAL.Add("Kit");
        myAL.Add("Bradley");
        myAL.Add("Keith");
        myAL.Add("Susan");
    
        // Displays the properties and values of    the    ArrayList.
        Console.WriteLine( "Count: {0}", myAL.Count );
        
        PrintValues ("Unsorted", myAL );
        myAL.Sort();
        PrintValues("Sorted", myAL );
        myAL.Sort(new ReverseStringComparer() );
        PrintValues ("Reverse" , myAL );


        string [] names = (string[]) myAL.ToArray (typeof(string));


    }
    public static void PrintValues(string title, IEnumerable    myList )  {
        Console.Write ("{0,10}: ", title);
        StringBuilder sb = new StringBuilder();
        foreach (string s in myList) {
            sb.AppendFormat( "{0}, ", s);
        }
        sb.Remove (sb.Length-2,2);
        Console.WriteLine(sb);
    }
}
public class ReverseStringComparer : IComparer {
   public int Compare (object x, object y) {
       string s1 = x as string;
       string s2 = y as string;      
       //negate the return value to get the reverse order
       return -  (s1,s2);

   }
}


Visual C++
using namespace System;
using namespace System::Text;
using namespace System::Collections;

ref class ReverseStringComparer: public IComparer
{
public:
   virtual int Compare( Object^ x, Object^ y )
   {
      String^ s1 = dynamic_cast<String^>(x);
      String^ s2 = dynamic_cast<String^>(y);

      //negate the return value to get the reverse order
      return  -String::Compare( s1, s2 );
   }

};

void PrintValues( String^ title, IEnumerable^ myList )
{
   Console::Write( "{0,10}: ", title );
   StringBuilder^ sb = gcnew StringBuilder;
   {
      IEnumerator^ en = myList->GetEnumerator();
      String^ s;
      while ( en->MoveNext() )
      {
         s = en->Current->ToString();
         sb->AppendFormat(  "{0}, ", s );
      }
   }
   sb->Remove( sb->Length - 2, 2 );
   Console::WriteLine( sb );
}

void main()
{
   // Creates and initializes a new ArrayList.
   ArrayList^ myAL = gcnew ArrayList;
   myAL->Add( "Eric" );
   myAL->Add( "Mark" );
   myAL->Add( "Lance" );
   myAL->Add( "Rob" );
   myAL->Add( "Kris" );
   myAL->Add( "Brad" );
   myAL->Add( "Kit" );
   myAL->Add( "Bradley" );
   myAL->Add( "Keith" );
   myAL->Add( "Susan" );

   // Displays the properties and values of the ArrayList.
   Console::WriteLine( "Count: {0}", myAL->Count.ToString() );

   PrintValues( "Unsorted", myAL );

   myAL->Sort();
   PrintValues( "Sorted", myAL );

   myAL->Sort( gcnew ReverseStringComparer );
   PrintValues( "Reverse", myAL );

   array<String^>^names = dynamic_cast<array<String^>^>(myAL->ToArray( String::typeid ));
}

import System.*;
import System.Text.*;
import System.Collections.*;

public class SamplesArrayList
{
    public static void main(String[] args)
    {
        // Creates and initializes a new ArrayList.
        ArrayList myAL = new ArrayList();

        myAL.Add("Eric");
        myAL.Add("Mark");
        myAL.Add("Lance");
        myAL.Add("Rob");
        myAL.Add("Kris");
        myAL.Add("Brad");
        myAL.Add("Kit");
        myAL.Add("Bradley");
        myAL.Add("Keith");
        myAL.Add("Susan");

        // Displays the properties and values of the ArrayList.
        Console.WriteLine("Count: {0}", (Int32)myAL.get_Count());

        PrintValues("Unsorted", myAL);

        myAL.Sort();
        PrintValues("Sorted", myAL);

        myAL.Sort(new ReverseStringComparer());
        PrintValues("Reverse", myAL);

        String names[] = (String[])(myAL.ToArray(String.class.ToType()));
    } //main

    public static void PrintValues(String title, IEnumerable myList)
    {
        Console.Write("{0,10}: ", title);
        StringBuilder sb = new StringBuilder();
        IEnumerator objEnum = myList.GetEnumerator();
        while (objEnum.MoveNext()) {
            String s = System.Convert.ToString(objEnum.get_Current());
            sb.AppendFormat("{0}, ", s);
        }

        sb.Remove(sb.get_Length() - 2, 2);
        Console.WriteLine(sb);
    } //PrintValues
} //SamplesArrayList


public class ReverseStringComparer implements IComparer
{
    public int Compare(Object x, Object y)
    {
        String s1 = System.Convert.ToString(x);
        String s2 = System.Convert.ToString(y);

        //negate the return value to get the reverse order
        return -(s1, s2);
    } //Compare 
} //ReverseStringComparer

JScript
import System;
import System.Text;
import System.Collections;

public class SamplesArrayList  {

    public static function Main() : void {
        // Creates and initializes a new ArrayList.
        var myAL : ArrayList = new ArrayList();
        myAL.Add("Eric");
        myAL.Add("Mark");
        myAL.Add("Lance");
        myAL.Add("Rob");
        myAL.Add("Kris");
        myAL.Add("Brad");
        myAL.Add("Kit");
        myAL.Add("Bradley");
        myAL.Add("Keith");
        myAL.Add("Susan");
    
        // Displays the properties and values of    the    ArrayList.
        Console.WriteLine( "Count: {0}", myAL.Count );
        
        PrintValues ("Unsorted", myAL );
        myAL.Sort();
        PrintValues("Sorted", myAL );
        myAL.Sort(new ReverseStringComparer() );
        PrintValues ("Reverse" , myAL );


        var names : String [] = (String[])(myAL.ToArray (System.String));


    }
    public static function PrintValues(title : String, myList: IEnumerable ) : void {
        Console.Write ("{0,10}: ", title);
        var sb : StringBuilder = new StringBuilder();
        for (var s : String in myList) {
            sb.AppendFormat( "{0}, ", s);
        }
        sb.Remove (sb.Length-2,2);
        Console.WriteLine(sb);
    }
}
public class ReverseStringComparer implements IComparer {
   public function Compare (x, y) : int  {
       //negate the return value to get the reverse order
       return -  (String(x), String(y));
   }
}
SamplesArrayList.Main();
相关文章
|
存储 C++ 索引
【C++STL基础入门】深入浅出string类的比较(compare)、复制(copy)
【C++STL基础入门】深入浅出string类的比较(compare)、复制(copy)
251 1
|
3月前
|
Java 索引
java基础(13)String类
本文介绍了Java中String类的多种操作方法,包括字符串拼接、获取长度、去除空格、替换、截取、分割、比较和查找字符等。
40 0
java基础(13)String类
|
2月前
|
Java
【编程基础知识】(讲解+示例实战)方法参数的传递机制(值传递及地址传递)以及String类的对象的不可变性
本文深入探讨了Java中方法参数的传递机制,包括值传递和引用传递的区别,以及String类对象的不可变性。通过详细讲解和示例代码,帮助读者理解参数传递的内部原理,并掌握在实际编程中正确处理参数传递的方法。关键词:Java, 方法参数传递, 值传递, 引用传递, String不可变性。
58 1
【编程基础知识】(讲解+示例实战)方法参数的传递机制(值传递及地址传递)以及String类的对象的不可变性
|
2月前
|
安全 Java 测试技术
Java零基础-StringBuffer 类详解
【10月更文挑战第9天】Java零基础教学篇,手把手实践教学!
31 2
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
22 1
|
3月前
|
安全 Java
String类-知识回顾①
这篇文章回顾了Java中String类的相关知识点,包括`==`操作符和`equals()`方法的区别、String类对象的不可变性及其好处、String常量池的概念,以及String对象的加法操作。文章通过代码示例详细解释了这些概念,并探讨了使用String常量池时的一些行为。
String类-知识回顾①
|
2月前
|
数据可视化 Java
让星星月亮告诉你,通过反射创建类的实例对象,并通过Unsafe theUnsafe来修改实例对象的私有的String类型的成员属性的值
本文介绍了如何使用 Unsafe 类通过反射机制修改对象的私有属性值。主要包括: 1. 获取 Unsafe 的 theUnsafe 属性:通过反射获取 Unsafe类的私有静态属性theUnsafe,并放开其访问权限,以便后续操作 2. 利用反射创建 User 类的实例对象:通过反射创建User类的实例对象,并定义预期值 3. 利用反射获取实例对象的name属性并修改:通过反射获取 User类实例对象的私有属性name,使用 Unsafe`的compareAndSwapObject方法直接在内存地址上修改属性值 核心代码展示了详细的步骤和逻辑,确保了对私有属性的修改不受 JVM 访问权限的限制
54 4
|
2月前
|
存储 安全 Java
【一步一步了解Java系列】:认识String类
【一步一步了解Java系列】:认识String类
25 2
|
2月前
|
安全 C语言 C++
【C++篇】探寻C++ STL之美:从string类的基础到高级操作的全面解析
【C++篇】探寻C++ STL之美:从string类的基础到高级操作的全面解析
36 4
|
2月前
|
存储 编译器 程序员
【C++篇】手撕 C++ string 类:从零实现到深入剖析的模拟之路
【C++篇】手撕 C++ string 类:从零实现到深入剖析的模拟之路
65 2

热门文章

最新文章

下一篇
无影云桌面