BigInteger.Abs(BigInteger) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
BigInteger 개체의 절대 값을 가져옵니다.
public:
static System::Numerics::BigInteger Abs(System::Numerics::BigInteger value);
public:
static System::Numerics::BigInteger Abs(System::Numerics::BigInteger value) = System::Numerics::INumberBase<System::Numerics::BigInteger>::Abs;
public static System.Numerics.BigInteger Abs (System.Numerics.BigInteger value);
static member Abs : System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function Abs (value As BigInteger) As BigInteger
매개 변수
- value
- BigInteger
숫자.
반환
value
의 절대값입니다.
구현
설명
숫자의 절대값은 다음 표와 같이 부호가 없는 숫자입니다.
value 매개 변수 |
반환 값 |
---|---|
value
>= 0 |
value |
value
< 0 |
value * -1 |
메서드는 Abs 기본 숫자 형식의 메서드와 동일합니다 Math.Abs .
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET