Instance Method インスタンスメソッド

compare(_:)

Indicates the temporal ordering of the receiver and another given date. レシーバと別の与えられた日付の時間的順序を指し示します。

Declaration 宣言

func compare(_ other: Date) -> ComparisonResult

Parameters パラメータ

anotherDate

The date with which to compare the receiver. レシーバと比較する日付。

This value must not be nil. If the value is nil, the behavior is undefined and may change in future versions of macOS. この値は、nilではいけません。値がnilならば、その挙動は未定義です、そして将来のバージョンのmacOSで変更されるかもしれません。

Return Value 戻り値

If: もし:

Discussion 議論

This method detects sub-second differences between dates. If you want to compare dates with a less fine granularity, use timeIntervalSince(_:) to compare the two dates. このメソッドは、日付間の秒未満の差異を検知します。あなたが一層小さい精細粒度で日付を比較したいならば、timeIntervalSince(_:)を使って2つの日付を比較してください。

See Also 参照

Comparing Dates 日付を比較する

Related Documentation 関連文書