数据类型:

Boolean(布尔型)    int    long    short    byte    float    double    char    class    interface(接口)

流程控制:

if     else    do    while    for    switch    case    default    break    continue    return    try (捕获异常)   catch(处理异常)    finally(有没有处理异常都执行)

修饰符:      

public    protected    private    final    void     static    strictfp (严格 精确)    abstract(抽象的)     transient(短暂)   synchronized(线程 同步)     volatile(易失)    native(本地)

动作:          

package    import(引入)     throw(抛出一个异常对象)    throws (声明一个异常对象  可能被抛出)    extends(继承)    implements(实现)    this(本类)    super(父类 超类)    instanceof(实例)    new

相关文章:

  • 2022-02-09
  • 2021-12-26
  • 2021-04-23
  • 2021-07-29
  • 2022-12-23
  • 2021-07-16
猜你喜欢
  • 2022-12-23
  • 2023-02-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
  • 2021-11-01
相关资源
相似解决方案