String.Equality(String, String) Operator

Definicja

Określa, czy dwa określone ciągi mają tę samą wartość.

public:
 static bool operator ==(System::String ^ a, System::String ^ b);
public static bool operator == (string a, string b);
public static bool operator == (string? a, string? b);
static member ( = ) : string * string -> bool
Public Shared Operator == (a As String, b As String) As Boolean

Parametry

a
String

Pierwszy ciąg do porównania, lub null .

b
String

Drugi ciąg do porównania, lub null .

Zwraca

Boolean

true wartość jest taka sama jak wartość ; w przeciwnym a b razie wartość false .

Przykłady

W poniższym przykładzie pokazano operator równości.

// Example for the String Equality operator.
using namespace System;
void CompareAndDisplay( String^ Comparand )
{
   String^ Lower = "abcd";
   Console::WriteLine( "\"{0}\" == \"{1}\" ?  {2}", Lower, Comparand, Lower == Comparand );
}

int main()
{
   Console::WriteLine( "This example of the String Equality operator\n"
   "generates the following output.\n" );
   CompareAndDisplay( "ijkl" );
   CompareAndDisplay( "ABCD" );
   CompareAndDisplay( "abcd" );
}

/*
This example of the String Equality operator 
generates the following output.

"abcd" == "ijkl" ?  False
"abcd" == "ABCD" ?  False
"abcd" == "abcd" ?  True
*/
// Example for the String Equality operator.
using System;

class EqualityOp 
{
    public static void Main() 
    {
        Console.WriteLine( 
            "This example of the String Equality operator\n" +
            "generates the following output.\n" );

        CompareAndDisplay( "ijkl" );
        CompareAndDisplay( "ABCD" );
        CompareAndDisplay( "abcd" );
    }

    static void CompareAndDisplay( string Comparand )
    {
        String  Lower = "abcd";

        Console.WriteLine( 
            "\"{0}\" == \"{1}\" ?  {2}",
            Lower, Comparand, Lower == Comparand );
    }
}

/*
This example of the String Equality operator 
generates the following output.

"abcd" == "ijkl" ?  False
"abcd" == "ABCD" ?  False
"abcd" == "abcd" ?  True
*/

Uwagi

Metoda Equality definiuje operację operatora równości dla String klasy . Umożliwia kod taki jak pokazany w sekcji Przykład. Z kolei operator wywołuje metodę statyczną, która wykonuje porównanie porządkowe (bez uwzględniania wielkości liter i bez uwzględniania Equals(String, String) kultury).

Uwaga

Kompilator Visual Basic nie rozpozna operatora równości jako wywołania Equality metody . Zamiast tego operator równości opakuje wywołanie Operators.CompareString metody .

Dotyczy