profile
사람인 척하는 고양이.
post-thumbnail

[자바] 2진수, 8진수, 16진수 변환하는 방법

int x = 345;String s1 = Integer.toBinaryString(x); //2진수String s2 = Integer.toOctalString(x); //8진수String s3 = Integer.toHexString(x); //16진수System.ou

2023년 5월 3일
·
0개의 댓글
·
post-thumbnail

[자바] 문자열 길이: length, length(), size 사용법

1. length length는 배열의 길이(요소의 개수)를 알고자 할 때 사용된다. 2. length() length()는 문자열의 길이를 알고자 할 때 사용된다. 3. size() size()는 컬렉션 프레임워크 타입의 길이를 알고자 할때 사용된다.

2023년 4월 27일
·
0개의 댓글
·