2021-07-03

本文仅为个人日常小知识点笔记,对于他人可能并无意义,故设置权限,不公开了
.
.
.
.
.
.
.
.
.

.
.

.

.

.

.

.

.

.

.

.

  1. 类上面注解:
 @author
 @version
 @see 参见
 
 @param 参数
 @return 
 @throw
 @deprecated  不推荐的类,方法。 英[ˈdeprəkeɪtɪd] 美[ˈdeprəkeɪtɪd] 	对…表示极不赞成; 强烈反对
 @exception
  1. 圆括号, 方括号, 花括号

  2. java以字母, 字符, - ,$ 开头

  3. 少见的关键字
    const, goto, instance of, native, transient, volatile, strictfp

  strictfp 的意思是FP-strict,也就是说精确浮点的意思。在Java虚拟机进行浮点运算时,使用:
 	    strictfp interface A {}
  	public strictfp class FpDemo1 {
  		strictfp void f() {}
  	}
  1. 二进制ob, 八进制 o, 十六进制 ox

  2. char 类型可以作为整型值来用
    其本身就是一个16位无

猜你喜欢

转载自blog.csdn.net/qq_34085100/article/details/118438220