LocalTime.Of 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| 속성 | 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 참조