Java基础之(六):变量、运算符与JavaDoc
变量、常量
一、变量的命名规范
首字母只能以字母(A-Z或者a-z)或者美元符($)或者下划线(_)开头,不能以数字开头,首字母之后只能跟字母(AZ或者az)或者数字,不能跟美元符或者下划线
源码
public static void main(String[] args) {
String Ahello = "1";
String hello = " 1 ";
String $hello = " 1 ";
String _hello = " 1 ";
System.out.println(Ahello);
System.out.println(hello);
System.out.println($hello);
System.out.println(_hello);
System.out.println(hello);
}
二、变量作用域
- 类变量
- 实例变量
- 局部变量
public class Variable{
static int allClicks=0;//类变量
String str="hello wordl";//实例变量
public void method(){
int i=0;局部变量
}
}
源码
//类变量 static
static double salary = 2500;
//属性:变量
//实例变量:从属于对象;如果不自行初始化,这个类型的默认值为0 0.0 u000;
//布尔值:默认是false
//除了基本类型,其余的默认值都是NULL;
String name;
int age;
//main方法
public static void main(String[] args) {
//局部变量:必须声明和初始化值
int i = 10;
System.out.println(i);
//变量类型 变量名字 = new com.kuang.base.operator.base.Demo06();
Demo06 demo06 = new Demo06();
System.out.println(demo06.age);
System.out.println(demo06.name);
System.out.println(salary);
//类变量 static
}
//其他方法
public void add(){
}
三、常量
final 常量名=值;
final double PI =3.14;
常量名一般使用大写字符。
//修饰符,不存在先后顺序
static final double PI = 3.14;
public static void main(String[] args) {
System.out.println(PI);
}
运算符
java语言支持如下运算符:
- 算术运算符:+,-,*,/,%,++,--
源码
public static void main(String[] args) {
//二元运算符
//ctrl + D:复制当前行到下一行
int a = 10;
int b = 20;
int c = 25;
int d = 25;
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/(double)b);
}
public static void main(String[] args) {
//++ -- 自增,自减 一元运算符
int a = 3;
int b = a++;//执行完这行代码后,先给b赋值,再自增
//a=a+1;
System.out.println(a);//a=4
//a=a+1;
int c = ++a;//执行完这行代码前,先自增,再给b赋值
System.out.println(a);//a=5
System.out.println(b);
System.out.println(c);
//幂运算 2^3 2*2*2 = 8
double pow = Math.pow(2,3);
System.out.println(pow);
}
-
赋值运算符:=
-
关系运算符:>,<,>=,<=,==,!=,instanceof
源码
public static void main(String[] args) {
//关系运算符返回的结果:正确,错误 布尔值
//if
int a = 10;
int b = 20;
int c = 21;
System.out.println(a>b);
System.out.println(a<b);
System.out.println(a==b);
System.out.println(a!=b);
//取余,模运算
System.out.println(c%a);
}
- 逻辑运算符:&&,||,!
源码
public static void main(String[] args) {
boolean a = true;
boolean b = false;
System.out.println("a && b:"+(a&&b));
System.out.println("a || b:"+(a||b));
System.out.println("!(a && b):"+!(a&&b));
//短路运算
int c = 5;
boolean d = (c<4)&&(c++<4);
System.out.println(d);
System.out.println(c);
}
- 位运算符:&,|,^,~,>>,<<,>>>(了解)
源码
public static void main(String[] args) {
/*
A = 0011 1100
B = 0000 1101
-----------------------------
A&B = 0000 1100
A|B = 0011 1101
A^B = 0011 0001
~B = 1111 0010
2*8 = 16 2*2*2*2
<< *2
>> /2
0000 0000 0
0000 0001 1
0000 0010 2
0000 0011 3
0000 0100 4
0000 1000 8
0001 0000 16
*/
System.out.println(2<<3);
}
- 条件运算符:?:
源码
public static void main(String[] args) {
//x ? y : z
//如果x==true,则结果为y,否则为z;
int score = 80;
String type = score <60 ?"不及格":"及格";
System.out.println(type);
}
- 扩展赋值运算符:+=,-=,*=,/=
源码
public static void main(String[] args) {
int a = 10;
int b = 20;
a+=b;//a=a+b;
a-=b;//a=a-b;
System.out.println(a);
//字符串连接符 + , String
System.out.println(a+b);
System.out.println(""+a+b);
System.out.println(a+b+"");
}
包机制、JavaDoc
新建一个包
包机制
定义包:package
导入包:import
为了更好的组织类,Java提供了包机制,用于区分类名的命名空间。
包语句的语法格式为:
package pkg1[. pkg2[. pkg3...]];
为了能够使用某一个包的成员,我们需要在Java程序中明确导入该包。使用“import”语句可完成此功能
import package1[.package2...].(classname|*);
JavaDoc
- javadoc命令是用来自己生成API文档的
参数信息
@author 作者名
@version 版本号
@since 指明需要最早使用的jdk版本
@param 参数名
@return 返回值情况
@throws 异常抛出情况