java关键字的是什么
时间: 2023-12-24 09:04:17 浏览: 88
以下是 Java 中的一些关键字:
- abstract
- assert
- boolean
- break
- byte
- case
- catch
- char
- class
- const
- continue
- default
- do
- double
- else
- enum
- extends
- final
- finally
- float
- for
- goto
- if
- implements
- import
- instanceof
- int
- interface
- long
- native
- new
- package
- private
- protected
- public
- return
- short
- static
- strictfp
- super
- switch
- synchronized
- this
- throw
- throws
- transient
- try
- void
- volatile
- while
相关问题
java 关键字super
关键字this和super都是Java中的关键字。
this关键字用于引用当前对象,可以用来区分局部变量和成员变量,也可以用来调用当前对象的方法。
super关键字用于引用父类对象,可以用来调用父类的构造方法和方法。在子类中,如果父类和子类有同名的方法或属性,可以使用super关键字来访问父类的方法或属性。
阅读全文