본문 바로가기

JAVA공부

Integer.toBinaryString()

자바에서 정수를 2진수로 변환하는 방법은 Integer.toBinaryString() 메서드를 사용하는 것입니다. 이 메서드는 주어진 정수를 2진수 문자열로 변환하여 반환합니다.

예를 들어, 다음은 Integer.toBinaryString() 메서드를 사용하여 정수를 2진수로 변환하는 예시입니다.

int number = 10; // 변환할 정수형 변수

String binaryString = Integer.toBinaryString(number);

System.out.println(binaryString); // 출력: "1010"

 

위의 예시에서 정수 10은 2진수로 "1010"으로 변환됩니다.

이와 같이 Integer.toBinaryString() 메서드를 사용하면 정수를 간단하게 2진수로 변환할 수 있습니다.