一.包名加类名是一个类的完整名字。包名要小写 如:com.tencent.timi.wzry.action com.taobao.pro.model
https://blog.csdn.net/Deft_MKJing/article/details/79460485
二.快捷键
添加多行注释:选择对应的行同时点击ctrl加shift加/
取消多行注释:选择对应的行同时点击ctrl加shift加\
public static void main(String[] args){}生成:main Alt加/
System.out.println("hello");的生成:syso Alt加/
删除一整行:ctrl加d
回复前一步操作:ctrl加z
全选复制粘贴和Windows一样
快速移动某行代码Alt加上下箭头
生成方法返回值:Alt加shift加l
快速修复:ctrl加1
查找某个类:ctrl加shift加t
代码提示:Alt加/
快速修改同名变量:shift加Alt加r
快速生成方法:Alt加shift加m
快速批量修改:Alt加shift加a
移动行:Alt加上下键
快速显示outline :ctrl加o
查看方法代码:f3或者ctrl加点击
三.Java中的数据类型
基本数据类型:boolean byte short int long char float double
整形数据类型:byte(字节类型1字节 -128到127)
short(短整型2字节 -2^15~2^15-1)
int(整型类型4字节-2^31~2^31-1)
long(长整型8字节-2^63~2^63-1)
浮点数据类型:
float (4字节单精度浮点型可以精确到七位有效数字,一般float难以满足情况,所以一般采用double)
double(8字节双精度浮点型精度是float两倍对于小数一般用double
浮点型计算时候有误差 所以计算银行利息计算不能用浮点型直接计算要用特殊的Bigdecimal这个类)
字符数据类型char (2个字节 字符类型表示unicode编码表中的字符,可以表示65536个字符包括ascll码表(前128个)字符型常量加单引号 char在内存中存储的是这个字符在unicode的编码值,因此char类型可以当成整型类型来处理)
布尔数据类型boolean 一位不是一个字节
整形默认int 浮点型默认double 3.14可以赋值给double不能赋值给float int常量不超出指定长度可以直接赋值。声明long类型常量后面加l
UTF-8 最大的一个特点,就是它是一种变长的编码方式。它可以使用1~4个字节表示一个符号,根据不同的符号而变化字节长度。
引用数据类型:类,接口,数组类型
四.Junit运用
下载junitjar包 注意加@Test注解然后写测试类
如:
packagecom.arthur.day2.junitsec;
importorg.junit.After;
importorg.junit.Before;
import org.junit.Test;
public class JunitDemo {
public static void main(String[] args) {
int a=2;//定义变量a 值是2
float f=2.13f;
double d=3.2;
byte b=2;
short s=3;
long l=22;
boolean b0=true;
}
@Before
public void doBefore() {
System.out.println("准备");
}
@After
public void doAfter(){
System.out.println("完成");
}
@Test
public void demo() {
//定义一个int类型的变量 值为3
int var1=3;
System.out.println(var1);
}
@Test
public void demo1() {
short var1=3333;
System.out.println(var1);
}
@Test
public void demo2() {
int var2=51615561;
System.out.println(var2);
}
@Test
public void demo3() {
long var3=331111136516l;
System.out.println(var3);
}
@Test
public void demo4() {
float var4=3.1f;
System.out.println(var4);
}
@Test
public void demo5() {
double var5=31455.52;
System.out.println(var5);
}
@Test
public void demo6() {
char var6='a';
System.out.println('\"');
System.out.println('\\');
System.out.println(var6);
System.out.println(var6+1);
System.out.println("var6");
}
@Test
public void demo7() {
boolean flag=true;
System.out.println(4>3);
}
}