Skip to content

Instantly share code, notes, and snippets.

@mumura
Created April 2, 2025 07:37
Show Gist options
  • Save mumura/e57c92050641b57702ba6729cc25dcce to your computer and use it in GitHub Desktop.
Save mumura/e57c92050641b57702ba6729cc25dcce to your computer and use it in GitHub Desktop.
JavaStudy_03.java
public class JavaStudy_03 {
public static void main(String[] args) {
// 1. 업캐스팅 (작은 타입 -> 큰 타입)
System.out.println("===== 업캐스팅 =====");
int number = 10;
double doubleNumber = number; // int -> double 자동 형변환
System.out.println("int 값 : " + number); // 10
System.out.println("doubleNumber 값 : " + doubleNumber); //10.0
// 2. 다운캐스팅 (큰 타입 -> 작은 타입)
System.out.println();
System.out.println("=== 다운 캐스팅 ===");
double score = 93.7;
int scoreInt = (int) score;
System.out.println("double 값 : " + score); //93.7
System.out.println("int 값 : " + scoreInt ); //93
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment