public class NumberConversion {
public static void main(String[] args) {
int n0 = Integer.parseInt("11", 10); //10진수 -> 10진수
int n1 = Integer.parseInt("11", 2); //2진수 -> 10진수
int n2 = Integer.parseInt("11", 8); //8진수 -> 10진수
System.out.printf("%d, %d\n",n1, n2);
String s1 = Integer.toBinaryString(15); // int -> 2진수
String s2 = Integer.toOctalString(8); // int -> 8진수
System.out.printf("%s, %s\n",s1, s2);
}
}
'JAVA' 카테고리의 다른 글
싱글턴(Singleton)패턴 이란? - 싱글톤 구현 방법 6가지 (0) | 2021.06.27 |
---|---|
Comparable , Comparator 인터페이스 차이점 (0) | 2021.02.15 |
Collection 중복체크 - equals(), hashCode() (0) | 2021.01.31 |
JVM Memory 구조 (0) | 2021.01.31 |
Class Object Method 정리 (0) | 2021.01.30 |