일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 하이퍼레저패브릭
- #JAVASCRIPT
- border-box
- #3차원배열
- #bubbleSort
- #CallByAddress
- html multimedia
- html charset
- mac terminal command
- html youtube
- #성적관리프로그램
- docker example
- #C++ 연산자함수오버로딩
- html5 new tag
- hyperledger transaction
- #binary
- html code
- #자바상속#자바이즈어#is~a
- relative path
- git flow
- html plug-in
- 토큰경제
- html object
- #다차원포인터
- html id
- #2차원배열
- #1차원배열
- #C++ has~a
- #android activity
- html video
- Today
- Total
A sentimental robot
진수에 대해서 본문
class A {
}
public class Day3 {
public static void main(String[] args) {
A a = new A();
System.out.println(a); // a의 16진수 주소값
System.out.println(a.hashCode()); // 10진수 주소값
int n1 = 1234;
System.out.println(Integer.toBinaryString(n1)); // 10진수를 2진수로
int n2 = 0x1234;
System.out.println(Integer.toBinaryString(n2)); // 16진수를 2진수로
}
}
public class Day3 {
static void func01(int n) {
String s1 = Integer.toBinaryString(n);
System.out.println(s1);
char[] ar = new char[32 - s1.length()]; // 16진수를 2진수로 표현하기 위해선 최대 32bit필요
for (int i = 0; i < ar.length; i++)
ar[i] = '0';
String s2 = new String(ar);
StringBuffer s3 = new StringBuffer(s2 + s1); // CRUD(자료구조)가능한 String객체
System.out.println(s3); // 2진수를 32자리 수로 표현
// 16진수의 한자리는 4bit로 표현(2진수의 4자리수) > 4자리씩 끊기
for (int i = 0; i < 7; i++) {
s3.insert((7 - i) * 4, ' ');
}
System.out.println(s3);
}
public static void main(String[] args) {
func01(0x1234);
int a = 0x1234;
int b = 0xabcd;
int c = a & b; // 비트연산자& (and)
int d = a | b; // 비트연산자 | (or)
func01(c);
func01(d);
}
}
'Java' 카테고리의 다른 글
Chatting UI (0) | 2018.02.07 |
---|---|
UI (0) | 2018.02.07 |
객체참조 (0) | 2018.01.09 |
다운캐스팅, Downcasting (0) | 2018.01.09 |
예외처리, try~catch (0) | 2018.01.09 |