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

getHour(_:minute:second:nanosecond:from:)

Returns by reference the hour, minute, second, and nanosecond component values for a given date. 参照によって時間、分、秒、そしてナノ秒構成要素をある与えられた日付に対して返します。

Declaration 宣言

func getHour(_ hourValuePointer: UnsafeMutablePointer<Int>?, 
      minute minuteValuePointer: UnsafeMutablePointer<Int>?, 
      second secondValuePointer: UnsafeMutablePointer<Int>?, 
  nanosecond nanosecondValuePointer: UnsafeMutablePointer<Int>?, 
        from date: Date)

Parameters パラメータ

hourValuePointer

Upon return, contains the hour of the given date. 戻りでは、与えられた日付の時間を含みます。

minuteValuePointer

Upon return, contains the minute of the given date. 戻りでは、与えられた日付の分を含みます。

secondValuePointer

Upon return, contains the second of the given date. 戻りでは、与えられた日付の秒を含みます。

nanosecondValuePointer

Upon return, contains the nanosecond of the given date. 戻りでは、与えられた日付のナノ秒を含みます。

date

The date for which to perform the calculation. それに対して計算を実行することになる日付。

Discussion 議論

Pass NULL to ignore any individual component parameter. NULLを渡して、何らかの特定の構成要素パラメータを無視してください。

This is a convenience method for getting the time components of a given date using components(_:from:) これは、与えられた日付の時間構成要素をcomponents(_:from:)を使って得るための便宜メソッドです

See Also 参照

Extracting Components 構成要素の抽出