1_JDK环境变量注解
2_常用关键字与变量
3_循环语句使用方法
------jdk环境变量------
path : 系统找不到的地址在这里找
JAVA_HOME:用户自行创建的jdk存放地址
)存放jdk地址的名字可以自行定义
例:
JAVA_HOME : C:\Program Files\Java\jdk1.8.0_271;
path : %JAVA_HOME%\bin;
%JAVA_HOME%\bin
表示调用%%内地址下的bin目录
------常用关键字------
关键字
public 公共的
private 私有的
int 整型
long 长整型
short 短整型
double 双精度
float 单精度
string 字符串/类
char 字符
boolean 布尔型 false(0)/假 true(1)/真
例:
public class HelloWorld
{
public static void main(String[] args)
{
int a = 1; //整形
long b = 123; //长整形
double c = 1.23; //双精度浮点数
float d = 1.2; //单精度浮点数
string e = "Hello World"; //字符串
char f = 'H';
char f2 = '单'; //字符/只能有一个字母或一个字符
System.out.printf(a,b,c,d,e,f,f2);
}
}
------四种循环语句结构------
循环结构的使用
/*
//if else 判断语句的使用
if(a){ //判断
System.out.printf("...");
}else if(b){ //如果未运行以上则执行以下
System.out.printf("...");
}else{ //前两种都没运行,则执行这个
System.out.printf("...");
}
//for循环语句
for(;;){
System.out.printf("--"); //死循环
}
for(int i = 0; i < 5; i++){
System.out.printf(i); //遍历循环五次
}
//while循环语句
while(true){System.out.println();}
//do while..do()循环语句
do(1){
}while(); //先运行一次再循环
*/
public class HelloWorld
{
public static void main(String[] args)
{
int a = 1;
int b = 2;
int c = 3;
if(a + b = c){ //判断a+b会等于c
System.out.println("a + b = c");
}else{ //不等于则执行这段代码
System.out.println("--");
}
}
}