1、简洁有效
2、可移植性
3、面向对象
4、解释型
5、适合分布式计算
6、拥有较好的性能
7、健壮、防患于未然
8、具有多线程处理能力
9、具有较高的安全性
10、函数式编程
11、模块化支持
Hello wordpublic class Hello { public static void main(String args[]) { // 输出数据换行 System.out.println("hello word"); // 输出数据不换行 System.out.print("hello word"); System.out.print("hello word"); } }
public class是Java中的关键字,表示的是定义一个类,在Java中所有的 *** 作都是由类组成的
public static void main(String args[]),是程序的主方法,即所有的程序都会以此方法作为起点并运行下来
System.out.println()起输出的作用,是直接将“()”里的内容进行输出,如果有多个值时,中间可以使用“+”连接
System.out是指标准输出
在Java中所有的程序都是由一个个代码段组成,代码段使用“{}”声明,可以嵌套
注释// 单行注释标识符
java的包、类、方法、参数、变量的名字,可以由任意顺序的大小写字母、数字、下划线(_)、美元符号($)组成
但标识符不能以数字开头,也不能是java中的保留关键字。
关键字访问控制:public、protected、private。
类、方法、变量修饰符:abstract、class、extends、final、implements、interface、native、new、static、strictfp、synchronized、transient、volatile、void、enum。
程序控制:break、continue、return、do、while、if、else、for、instanceof、switch、case、default。
异常处理:try、catch、throw、throws、final、assert。
包定义与使用:import、package。
基本类型:boolean、byte、char、double、float、int、long、short、null、true、false。
变量引用:super、this。
未使用到的关键字:goto、const。
Java数据类型常量,指的就是一个个具体的内容,例如,一个数字10,内容始终都是无法改变的,这样的内容就被称为常量。
变量一般都需要定义相应的数据类型。而且这个变量一般都可以保存不同的内容,既然里面的内容可变那么就称为变量。
public class Hello { public static void main(String[] args) { int a = 10; // 10是一个常量 // a是一个变量 a=20; System.out.println(a*a); } }数据溢出
public class Hello { public static void main(String[] args) { int max=2147483647; int min=-2147483648; System.out.println("max+1:"+(max+1)); System.out.println("max+2:"+(max+2)); System.out.println("min-1:"+(min-1)); } }运算符
++x-++放变量x后 使用x后 再自增
++放变量x前 使用x前 x先自增
–x-–放变量x后 使用x后 再自减
–放变量x前 使用x前 x先自减
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)