码迷,mamicode.com
首页 > 编程语言 > 详细

java变量

时间:2019-01-15 18:28:53      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:[]   oat   2.3   des   报错   long   lse   变量   desktop   

class Demo
{
    public static void main(String[] args)
    {
        byte a = 3;
        System.out.print(a);
    }
}

byte -128到 +128

class Demo
{
    public static void main(String[] args)
    {
        byte a = 300;//这里会报错
        System.out.print(a);
    }
}

超出+128 损失精度

C:\Users\admin\Desktop\d1>javac 123.java
123.java:5: 错误: 不兼容的类型: 从int转换到byte可能会有损失
                byte a = 300;
                         ^
1 个错误
class Demo
{
    public static void main(String[] args)
    {
        byte a = 30;
        short b = 4000; 
        int x = 12;
        long l = 12345678;


        
/*
        float f = 2.3;
        C:\Users\admin\Desktop\d1>javac 123.java
123.java:11: 错误: 不兼容的类型: 从double转换到float可能会有损失
                float f = 2.3;
                          ^
1 个错误
*/
        float f = 2.3f;
        double d = 3.4;

        char ch = ‘a‘;

        boolean bl = true;
        bl = false;
        System.out.print(bl);
    }
}

java变量

标签:[]   oat   2.3   des   报错   long   lse   变量   desktop   

原文地址:https://www.cnblogs.com/150643com/p/10273242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!