小编给大家分享一下Java面向对象之如何实现静态内部类,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
public class InnerClass3 {public static void main(String[] args) {//实例化母亲Mother mother = new Mother("lucy");//母亲吃苹果mother.eat("苹果");//孩子吸收营养//Mother.Baby baby=new Mother.Baby();//baby.eat();Mother.Baby.eat();}}class Mother {private String name;private static String food;//母亲吃的食物public Mother(String name) {this.name = name;}public String getName() {return this.name;}public void setName(String name) {this.name = name;}//母亲吃东西public void eat(String food) {this.food = food;System.out.println(this.name + " 吃了 " + this.food);}static class Baby {//孩子从母亲吃的东西中吸收营养public static void eat() {System.out.println("孩子从母亲吃的 " + food + " 中吸收营养");}}}
以上是“Java面向对象之如何实现静态内部类”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!