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

getEra(_:yearForWeekOfYear:weekOfYear:weekday:from:)

Returns by reference the era, year, week of year, and weekday component values for a given date. 参照によって紀年、年、年内週番号、そして曜日構成要素をある与えられた日付に対して返します。

Declaration 宣言

func getEra(_ eraValuePointer: UnsafeMutablePointer<Int>?, 
yearForWeekOfYear yearValuePointer: UnsafeMutablePointer<Int>?, 
 weekOfYear weekValuePointer: UnsafeMutablePointer<Int>?, 
    weekday weekdayValuePointer: UnsafeMutablePointer<Int>?, 
       from date: Date)

Parameters パラメータ

eraValuePointer

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

yearValuePointer

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

weekValuePointer

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

weekdayValuePointer

Upon return, contains the weekday 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 構成要素の抽出