码迷,mamicode.com
首页 > 其他好文 > 详细

基本类型

时间:2021-02-05 10:43:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   als   bool   byte   dem   short   建议   double   false   

public class Demo01 {
    public static void main(String[] args) {

        String 英雄联盟 ="青铜";
        //String 英雄联盟 ="青铜";
        System.out.println(英雄联盟);

        //建议多用用英文命名,其他的low

        //对大小写敏感
        String Man = "xjh";
        String man = "xjh";





        String Ahello = "xjh";
        String hello = "xjh";
        String $hello = "xjh";
        String _hello = "xjh";

        //不能以数字,#,*开头
        //String 1hello = "xjh";
        //String #hello = "xjh";
        //String *hello = "xjh";

public class Demo02 {
    public static void main(String[] args) {
        //八大基本类型


        //整数
        int num1 = 10;  //最常用
        byte num2 = 20;
        short num3 = 30;
        long num4 = 30l;  //long类型要在数字后加上l

        //小数:浮点数
        float num5 = 50.1F;  //float类型要在数字后加上F
        double num6 = 3.141592653589793238462643;


        //字符
        char name = ‘国‘;
        //字符串,String不是关键字,是类
        //String namea ="张三";


        //布尔值: 是非
        boolean flag = true;
        //boolean flag = false;


    }
}

基本类型

标签:code   als   bool   byte   dem   short   建议   double   false   

原文地址:https://www.cnblogs.com/xuxuyouqinfeng/p/14374560.html

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