关于java语言中的那些关键字

75 阅读1分钟

java8 keywords

image.png

  1. 数据类型

boolean

byte char short int long float double

const

void

  1. 类与对象

package import

class interface abstract enum

implements extends super

final static

new

this

  1. 访问限制

public protected private

  1. 执行顺序

for do while

if else

switch case default

continue break

goto

return

  1. 线程同步

synchronized

volatile

  1. 异常

try catch finally

throw throws

  1. 语言层面

assert

instanceof

native

transient

strictfp