- package com.lovecoding.J20250518;
- /**
- * @author WanJl
- * @version 1.0
- * @title Demo08
- * @description java的类型转换
- * @create 2025/5/18
- */
- public class Demo08 {
- public static void main(String[] args) {
- int i=1500;
- byte b=(byte)i;
- System.out.println(b);
- }
- }
|