super 关键字用于子类中,访问父类的成员变量、方法或构造函数。其主要用途包括:1. 访问父类成员变量2. 调用父类方法3. 调用父类构造函数。super 关键字只能在子类中使用,且必须在子类的实例上下文中使用。
Java 中 super 关键字的用法
什么是 super 关键字?
super 关键字在 Java 中用于引用父类的成员变量、方法或构造函数。
super 关键字的用途
super 关键字有以下几种主要用途:
1. 访问父类成员变量
要访问父类的成员变量,可以使用 super.member_variable 语法。例如:
<code class="java">class Child extends Parent { int childVariable; void <a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/16380.html" target="_blank">access</a>ParentVariable() { System.out.println("Parent variable: " + super.parentVariable); } }</code>
登录后复制
2. 调用父类方法
要调用父类的方法,可以使用 super.method_name() 语法。例如:
<code class="java">class Child extends Parent { void childMethod() { super.parentMethod(); } }</code>
登录后复制
3. 调用父类构造函数
要调用父类的构造函数,可以使用 super() 语法,必须在子类的构造函数的第一行调用。例如:
<code class="java">class Child extends Parent { public Child() { super(); // 调用父类的无参构造函数 } public Child(int value) { super(value); // 调用父类的带参构造函数 } }</code>
登录后复制
super 关键字的使用注意
- super 关键字只能在子类中使用。
- super 关键字必须在子类的实例上下文中使用。
- super 关键字只能调用父类的成员变量、方法或构造函数,不能用于访问或调用祖先类的成员。
以上就是java中super关键字的用法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:张大嘴,转转请注明出处:https://www.dingdanghao.com/article/432268.html