Day04 Java基础1

注释


单行注释 //

public class Hello {
    public static void main(String[] args) {
        //输出一个hello world
        System.out.println("hello world");
    }
}

多行注释/* */

public class Hello {
    public static void main(String[] args) {
        /*输出一个hello world
          输出一个hello world
        */
        System.out.println("hello world");
    }
}

文档注释/** */

public class Hello {
    public static void main(String[] args) {
        /**
         * @deprecated dsd
         */
        System.out.println("hello world");
    }
}

标识符

关键字

String teacher = "nb";  //定义变量teacher叫nb

所有的标识符都以字母(大小写),$ ,_(下划线)开始,其他不行

String teacher  = "nb";  
String _teacher = "nb"; 
String $teacher = "nb";   
String Teacher  = "nb"; 

首字符之后可以数字等其他,大部分都是英文

不能使用关键字(例如:void)作变量名

标识符大小写很敏感

String teacher = "nb";  
String Teacher = "nb"; 
//以上表示两种意思
public class Hello {
    public static void main(String[] args) {
        String teacher = "nb";
        System.out.println(teacher);
    }
}
//输出为nb

数据类型

强类型语言

要求变量的使用符合严格规定,所有变量必须先定义才能使用

Java数据类型的分类

整数、小数、字、是非对错

String为字符串

public class Hello {
    public static void main(String[] args) {
        String teacher = "nb";
        int num=6;
        System.out.println(num);//引用变量
    }
}
//输出为6
上一篇:【单片机】NB-IoT移远BC28调试笔记


下一篇:19新生赛 谁更nb