반응형
java.lang.Integer.sugnum() 메소드는 입력한 값의 부호를 1, 0, -1으로 반환합니다.
Parameters
-
int i
Return Values
i가 양수면 1, 0이면 0, 음수면 -1을 리턴한다.
Exception
-
NA
Example
public class IntegerDemo {
public static void main(String[] args) {
// returns 1 as int value is greater than 1
System.out.println(Integer.signum(50));
// returns -1 as int value is less than 1
System.out.println(Integer.signum(-50));
// returns 0 as int value is equal to 0
System.out.println(Integer.signum(0));
}
}
Result
1
-1
0
반응형