教育路上
摘要:java定义一个普通方法调用外部类和内部类。以下是我们为大家整理的,相信大家阅读完后肯定有了自己的选择吧。
2023-09-08 09:33张琳
}
package Father;
import Fatherfatherchild;
public class Test1 {
public static void main(String[] args) {
child child=new father()new child();//外部类对象
childintroFather();//外部类方法
}
}
package Father; public class father { private String name="zhangjun"; //内部类 class child{ public void introFather() {//定义一个普通方法 Systemoutprintln(name);//调用name的属性 } } public void introFather() { child in=new child(); inintroFather(); } } package Father; import Fatherfatherchild; public class Test1 { public static void main(String[] args) { child child=new father()new child();//外部类对象 childintroFather();//外部类方法 } }
访客的评论 2024/09/09 14:11
文中描述的是准确的吗,如何报名!