Created
April 2, 2025 07:37
-
-
Save mumura/e57c92050641b57702ba6729cc25dcce to your computer and use it in GitHub Desktop.
JavaStudy_03.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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