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
32
33
34
|
public class Wrapper1 {
public static void main(String[] args) {
Integer i1 = new Integer(100); // 인스턴스생성
Integer i2 = new Integer(100); // 인스턴스 생성
System.out.println("참조변수의 비교 : " + (i1==i2)); // 참조값비교
System.out.println("저장값 비교 : " + i1.equals(i2)); // 저장값 비교
System.out.println("il.toString() : "+ i1.toString());
System.out.println("i2.toString() : "+ i2.toString());
System.out.println("Integer.MAX_VALUE : " +Integer.MAX_VALUE);
System.out.println("Integer.MIN_VALUE : "+Integer.MIN_VALUE);
System.out.println("Type : " + Integer.TYPE);
System.out.println("Siez : " + Integer.SIZE);
int num = i2.intValue();
System.out.println("int num = i2.intValue();" + num);
int num2=Integer.parseInt("10"); //String>int
num2+=1;
System.out.println("num2 : " + num2);
// String > integer , int > integer
Integer i3 = Integer.valueOf("10");
int num3=i3.intValue();
System.out.println("num3 : " + num3);
}
}
|
cs |
참조변수의 비교 : false
저장값 비교 : true
il.toString() : 100
i2.toString() : 100
Integer.MAX_VALUE : 2147483647
Integer.MIN_VALUE : -2147483648
Type : int
Siez : 32
int num = i2.intValue();100
num2 : 11
num3 : 10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public static void main(String[] args) {
Integer iValue=10; // autoboxing
// Integer iValue=new Integer(10)
// Integer iValue=Integer.valueOf(10)
Double dValue=3.14;
//Double dValue=new Double(3.14)
//Double dValue=Double.valueOf(3.14)
System.out.println(iValue); // iValue.toString()
System.out.println(dValue); // dValue.toString()
int num1=iValue; // Integer > int Auto unboxing
double num2= dValue;
System.out.println(num1);
System.out.println(num2);
}
}
|
cs |
10
3.14
10
3.14
'JAVA > F' 카테고리의 다른 글
[자바] compareTo (0) | 2020.10.23 |
---|---|
[자바] 토큰 / Token / Tokenizer / StringTokenizer (0) | 2020.10.22 |
[자바] 정확한 실수 표현 BigInteger / BigDecimal (0) | 2020.10.22 |
[자바] instanceof (0) | 2020.10.20 |
[자바] System.arraycopy [배열복사] (0) | 2020.10.13 |
[자바] String 관련 함수/메소드 (0) | 2020.10.13 |
[자바] 비어있는지 확인하는 함수 / isEmpty() (0) | 2020.10.12 |