개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
개발자에게 배우는 개발자교육! 구로 오라클자바교육학원 www.oraclejava.co.kr
형 변환(casting) 예제(3)
public class TypeConversion {
public static void main(String[] args) {
String strNum1="12345";
String strNum2="67890";
// String strNum1=args[0];
// String strNum2=args[1];
public static void main(String[] args) {
String strNum1="12345";
String strNum2="67890";
// String strNum1=args[0];
// String strNum2=args[1];
int tempNum1=1000;
//String--> int
int intNum1=Integer.parseInt(strNum1);
int intNum2=Integer.parseInt(strNum2);
int sum = intNum1+intNum2;
int intNum1=Integer.parseInt(strNum1);
int intNum2=Integer.parseInt(strNum2);
int sum = intNum1+intNum2;
double douNum1=Double.parseDouble(strNum1);
//int--> String
String stringSum = Integer.toString(sum);
System.out.println(stringSum);
String stringSum = Integer.toString(sum);
System.out.println(stringSum);
String strNum3=Integer.toString(tempNum1);
System.out.println(strNum3);
}
}
System.out.println(strNum3);
}
}
'오라클 > Oracle,SQL' 카테고리의 다른 글
[SQL 기초 및 PL-SQL 강의자료] Exception 유형 SQLCODE, SQLERRM (0) | 2016.05.30 |
---|---|
[SQL 기초 및 PL-SQL 강의자료] Exception 유형 User Defined EXCEPTION (0) | 2016.05.30 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |
Java Basic 실무 강좌 자료] Reflection의 실제 구현 (0) | 2016.05.29 |