언어

LocalTime.Of 메서드

정의

오버로드

속성 Description
Of(Int32, Int32, Int32, Int32)

1시간, 1분, 2초 및 나노초에서 LocalTime 인스턴스를 가져옵니다.

Of(Int32, Int32, Int32)

1시간, 1분, 1초에서 LocalTime 인스턴스를 가져옵니다.

Of(Int32, Int32)

1시간 1분에서 LocalTime 인스턴스를 가져옵니다.

Of(Int32, Int32, Int32, Int32)

1시간, 1분, 2초 및 나노초에서 LocalTime 인스턴스를 가져옵니다.

[Android.Runtime.Register("of", "(IIII)Ljava/time/LocalTime;", "", ApiSince=26)]
public static Java.Time.LocalTime? Of(int hour, int minute, int second, int nanoOfSecond);
[<Android.Runtime.Register("of", "(IIII)Ljava/time/LocalTime;", "", ApiSince=26)>]
static member Of : int * int * int * int -> Java.Time.LocalTime

매개 변수

hour
Int32

나타낼 시간(0에서 23까지)입니다.

minute
Int32

나타낼 시간(분)(0에서 59까지)입니다.

second
Int32

나타낼 분(0에서 59까지)입니다.

nanoOfSecond
Int32

0에서 999,999,999까지 나타내는 나노 초

반품

null이 아닌 현지 시간

특성

설명

1시간, 1분, 2초 및 나노초에서 LocalTime 인스턴스를 가져옵니다. 지정된 시간, 분, 초 및 나노초가 있는 LocalTime을 반환합니다.

에 대한 java.time.LocalTime.ofJava 참조

적용 대상

Of(Int32, Int32, Int32)

1시간, 1분, 1초에서 LocalTime 인스턴스를 가져옵니다.

[Android.Runtime.Register("of", "(III)Ljava/time/LocalTime;", "", ApiSince=26)]
public static Java.Time.LocalTime? Of(int hour, int minute, int second);
[<Android.Runtime.Register("of", "(III)Ljava/time/LocalTime;", "", ApiSince=26)>]
static member Of : int * int * int -> Java.Time.LocalTime

매개 변수

hour
Int32

나타낼 시간(0에서 23까지)입니다.

minute
Int32

나타낼 시간(분)(0에서 59까지)입니다.

second
Int32

나타낼 분(0에서 59까지)입니다.

반품

null이 아닌 현지 시간

특성

설명

추가할 수 있습니다.

에 대한 java.time.LocalTime.ofJava 참조

적용 대상

Of(Int32, Int32)

1시간 1분에서 LocalTime 인스턴스를 가져옵니다.

[Android.Runtime.Register("of", "(II)Ljava/time/LocalTime;", "", ApiSince=26)]
public static Java.Time.LocalTime? Of(int hour, int minute);
[<Android.Runtime.Register("of", "(II)Ljava/time/LocalTime;", "", ApiSince=26)>]
static member Of : int * int -> Java.Time.LocalTime

매개 변수

hour
Int32

나타낼 시간(0에서 23까지)입니다.

minute
Int32

나타낼 시간(분)(0에서 59까지)입니다.

반품

null이 아닌 현지 시간

특성

설명

1시간 1분에서 LocalTime 인스턴스를 가져옵니다. 지정된 시간 및 분이 있는 LocalTime을 반환합니다. 두 번째 및 나노초 필드는 0으로 설정됩니다.

에 대한 java.time.LocalTime.ofJava 참조

적용 대상