StrictMath.CeilMod 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| 속성 | Description |
|---|---|
| CeilMod(Int32, Int32) |
인수의 천장 모듈러스를 |
| CeilMod(Int64, Int32) |
및 |
| CeilMod(Int64, Int64) |
인수의 천장 모듈러스를 |
CeilMod(Int32, Int32)
인수의 천장 모듈러스를 int 반환합니다.
[Android.Runtime.Register("ceilMod", "(II)I", "", ApiSince=35)]
public static int CeilMod(int x, int y);
[<Android.Runtime.Register("ceilMod", "(II)I", "", ApiSince=35)>]
static member CeilMod : int * int -> int
매개 변수
- x
- Int32
배당금
- y
- Int32
수비자
반품
천장 모듈러스 x - (ceilDiv(x, y) * y)
- 특성
설명
인수의 천장 모듈러스를 int 반환합니다.
천장 모듈러스는 r = x - (ceilDiv(x, y) * y)수수와 y 반대 기호를 가지거나 0이며 범위에 -abs(y) < r < +abs(y)있습니다.
ulceilDivceilModli<></li>ceilDiv(x, y) * y + ceilMod(x, y) == x/ul 사이의 < 관계입니다.><>
예제 및 연산자에 대한 비교를 Math#ceilMod(int, int) Math.ceilMod 참조 % 하세요.
18에 추가되었습니다.
에 대한 java.lang.StrictMath.ceilMod(int, int)Java 설명서
이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.
적용 대상
CeilMod(Int64, Int32)
및 long 인수의 천장 모듈러스를 int 반환합니다.
[Android.Runtime.Register("ceilMod", "(JI)I", "", ApiSince=35)]
public static int CeilMod(long x, int y);
[<Android.Runtime.Register("ceilMod", "(JI)I", "", ApiSince=35)>]
static member CeilMod : int64 * int -> int
매개 변수
- x
- Int64
배당금
- y
- Int32
수비자
반품
천장 모듈러스 x - (ceilDiv(x, y) * y)
- 특성
설명
및 long 인수의 천장 모듈러스를 int 반환합니다.
천장 모듈러스는 r = x - (ceilDiv(x, y) * y)수수와 y 반대 기호를 가지거나 0이며 범위에 -abs(y) < r < +abs(y)있습니다.
ulceilDivceilModli<></li>ceilDiv(x, y) * y + ceilMod(x, y) == x/ul 사이의 < 관계입니다.><>
예제 및 연산자에 대한 비교를 Math#ceilMod(int, int) Math.ceilMod 참조 % 하세요.
18에 추가되었습니다.
에 대한 java.lang.StrictMath.ceilMod(long, int)Java 설명서
이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.
적용 대상
CeilMod(Int64, Int64)
인수의 천장 모듈러스를 long 반환합니다.
[Android.Runtime.Register("ceilMod", "(JJ)J", "", ApiSince=35)]
public static long CeilMod(long x, long y);
[<Android.Runtime.Register("ceilMod", "(JJ)J", "", ApiSince=35)>]
static member CeilMod : int64 * int64 -> int64
매개 변수
- x
- Int64
배당금
- y
- Int64
수비자
반품
천장 모듈러스 x - (ceilDiv(x, y) * y)
- 특성
설명
인수의 천장 모듈러스를 long 반환합니다.
천장 모듈러스는 r = x - (ceilDiv(x, y) * y)수수와 y 반대 기호를 가지거나 0이며 범위에 -abs(y) < r < +abs(y)있습니다.
ulceilDivceilModli<></li>ceilDiv(x, y) * y + ceilMod(x, y) == x/ul 사이의 < 관계입니다.><>
예제 및 연산자에 대한 비교를 Math#ceilMod(int, int) Math.ceilMod 참조 % 하세요.
18에 추가되었습니다.
에 대한 java.lang.StrictMath.ceilMod(long, long)Java 설명서
이 페이지의 일부는 만들고 공유한 작업을 기반으로 하며 에 설명된 조건에 따라 사용됩니다.