String.Equality(String, String) 演算子

定義

指定した 2 つの文字列の値が同一かどうかを判断します。

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

パラメーター

a
String

比較する最初の文字列または null

b
String

比較する 2 番目の文字列または null

戻り値

Boolean

a の値が b の値と同じ場合は true。それ以外の場合は false

次の例は、等値演算子を示しています。

// 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
*/

注釈

メソッド Equality は、 クラスの等値演算子の操作を定義 String します。 [例] セクションに示されている などのコードが有効になります。 さらに、 演算子は静的メソッドを呼び出します。このメソッドは、序数 (大文字と小文字を区別し、カルチャを区別しない) 比較 Equals(String, String) を実行します。

注意

コンパイラVisual Basicメソッドの呼び出しとして等値演算子を解決 Equality できません。 代わりに、等値演算子は メソッドの呼び出しをラップ Operators.CompareString します。

適用対象