API 기본형
1. 최대 최소값
System.out.println(Integer.MAX_VALUE);
System.out.println(Integer.MIN_VALUE);
2. Integer.compare()
index로 반환
Integer.compare(30, 10)); // 1 앞이 크면
Integer.compare(10, 30)); // -1 뒤가 작으면
Integer.compare(10, 10));// 0 같으면
3.min max
Integer.max(5, 2); // 5출력
Integer.min(5, 2); // 2출력
4. 문자열을 -> 숫자로
Integer.parseInt("314") + 1); *결과값 : 315
Double.parseDouble("31.4") + 1); *결과값 : 32.4
Author And Source
이 문제에 관하여(API 기본형), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@bh0117/API-기본형저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)