개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
상수 예(1)
//LiteralTest.java
public class LiteralTest{
public static void main(String[] args) {
int a = 100;
int b = 200L;
long c = 300L;
long d = 400l;
System.out.println("a = " + a); System.out.println("b = " + b);
System.out.println("c = " + c); System.out.println("d = " + d);
System.out.println("=============================");
char ca = 'a';
char cb = "b";
System.out.println("ca = " + ca);
System.out.println("cb = " + cb);
System.out.println("=============================");
String str1="안녕하세요! 오늘부터 우리는 자바 오덕후!!";
String str2='안녕하세요! 오늘부터 우리는 자바 오덕후!!';
System.out.println("문자열 출력1: "+str1);
System.out.println("문자열 출력2: "+str2);
System.out.println("=============================");
System.out.println("==String Concatenation Test==");
System.out.println(a+b+" 문자 ");
System.out.println(a+" 문자 "+b);
System.out.println(" 문자 "+a+b);
System.out.println(" 문자 "+(a+b));
}
}
public class LiteralTest{
public static void main(String[] args) {
int a = 100;
int b = 200L;
long c = 300L;
long d = 400l;
System.out.println("a = " + a); System.out.println("b = " + b);
System.out.println("c = " + c); System.out.println("d = " + d);
System.out.println("=============================");
char ca = 'a';
char cb = "b";
System.out.println("ca = " + ca);
System.out.println("cb = " + cb);
System.out.println("=============================");
String str1="안녕하세요! 오늘부터 우리는 자바 오덕후!!";
String str2='안녕하세요! 오늘부터 우리는 자바 오덕후!!';
System.out.println("문자열 출력1: "+str1);
System.out.println("문자열 출력2: "+str2);
System.out.println("=============================");
System.out.println("==String Concatenation Test==");
System.out.println(a+b+" 문자 ");
System.out.println(a+" 문자 "+b);
System.out.println(" 문자 "+a+b);
System.out.println(" 문자 "+(a+b));
}
}
'오라클 > Oracle,SQL' 카테고리의 다른 글
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
---|---|
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |