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

java变量的类型

时间:2019-06-17 18:57:09      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:浮点   out   col   stat   ble   浮点型   false   class   面向对象   

变量的类型

一 按数据类型分:

  1.基本数据类型 : 

      整型 :   byte  (1字节 -   (-128  ~  127))

           short  (2字节)

           int  (4字节)  

           long  (8字节)

      浮点型 :     float   (4字节)

              double  (8字节)

      字符型 : char  (2字节)

      布尔型 : boolean (只有两个值true/false)

 

  2.引用数据类型:类,接口,数组

二 按位置分 :局部变量 vs 成员变量(面向对象再讲)

public class VarTest3{
    
    public static void main(String[] args){
    
        /*
        整型 :byte(1字节 - (-128 ~ 127)) short(2字节) 
                            int(4字节) long(8字节)
        */

        byte b = 127;
        System.out.println(b);

        long number = 128L; //声明long型常量须后加‘l’(不建议使用)或‘L’
        System.out.println(number);

        System.out.println("--------------------------------------");
        //浮点型 : float(4字节) double(8字节)
        double d = 12.3;
        System.out.println(d);
        float f = 12.5f; //声明float型常量,须后加‘f’或‘F’
        System.out.println(f);

        System.out.println("--------------------------------------");
        //字符型 :char(2字节)
        char c = ‘a‘;
        c = ‘中‘;
        c = ‘キ‘;
        //第二种表示方式
        c = ‘\n‘;
        //System.out.println("aaa" + c + "bbb"); //"aaa\nbbb"
        //第三种表示方式
        c = ‘\u0065‘; //\u0065就unicode码 - 将\u0065对应的字符给了c
        c = 65; //是将65对应的字符赋值给了c
        System.out.println(c);

        System.out.println("--------------------------------------");
        boolean boo = true;
        boo = false;
        System.out.println(boo);


        System.out.println("------------------细节--------------------");
        double dd2 = 12.5D; //D,d可以加也可以不加
        dd2 = .5; //0.5
        System.out.println(dd2);
    }
}

字符串拼接的演示

public class VarTest4{

    public static void main(String[] args){
    
        int a = 20;
        System.out.println("aaa" + a);
        System.out.println("1" + a);
        System.out.println("aaa" + "ccc"); //"aaaccc"
    
    }
}

 

java变量的类型

标签:浮点   out   col   stat   ble   浮点型   false   class   面向对象   

原文地址:https://www.cnblogs.com/zmy-520131499/p/11041455.html

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