Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 777 Bytes

java面试.md

File metadata and controls

38 lines (21 loc) · 777 Bytes

java

image-20210903222436847

tools

  • x

JDK JRE JVM

image-20210904224453513

== and equals

  • == 对比的是栈中的值,
    • 如果是基本数据类型则对比的是变量值
    • 如果是引用类型则对比的是内存对象的地址
  • equals
    • object中默认采用==比较
    • String类中重写equals,只对比值

image-20210904225525039

final

内部类如果要使用外部变量,则外部变量必须要用final修饰

String StringBuffer StringBuilder

image-20210905224728575