黑马JAVA 22集 自动类型转换

黑马JAVA 22集 自动类型转换,第1张

黑马JAVA 22集 自动类型转换
package com.itheima.type;

public class TypeDemo1 {
    public static void main(String[] args) {
        //目标:理解自动类型转换
        byte a = 20;
        int b = a ; //发生了自动类型转换
        System.out.println(a);
        System.out.println(b);

        int age = 23;
        double db = age ; //自动类型转换
        System.out.println(db);

        char ch = 'a'; //  000000  01100001
        int code =ch; // 0000 0000 0000 01110001
        System.out.println(code);
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5563521.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存