Matrix.Equality(Matrix, Matrix) 演算子
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 2 つの Matrix 構造体が同一かどうかを判断します。
public:
static bool operator ==(System::Windows::Media::Matrix matrix1, System::Windows::Media::Matrix matrix2);
public static bool operator == (System.Windows.Media.Matrix matrix1, System.Windows.Media.Matrix matrix2);
static member ( = ) : System.Windows.Media.Matrix * System.Windows.Media.Matrix -> bool
Public Shared Operator == (matrix1 As Matrix, matrix2 As Matrix) As Boolean
パラメーター
戻り値
matrix1
と matrix2
が同一である場合は true
。それ以外の場合は false
。
例
次の例では、2 つの Matrix 構造体の等価性を確認する方法を示します。
private void equalityExample()
{
Matrix matrix1 = new Matrix(5, 10, 15, 20, 25, 30);
Matrix matrix2 = new Matrix(5, 10, 15, 20, 25, 30);
Boolean result;
// result is true.
result = (matrix1 == matrix2);
// result is false.
result = (matrix1 != matrix2);
}
注釈
注意
A は Matrix 、その値を倍精度浮動小数点型 (double) として格納します。 算術演算が実行されると、a Double の値の精度が失われる可能性があるため、論理的に等しい 2 つの Double 構造体間の比較が失敗する可能性があります。