我是靠谱客的博主 鲜艳电脑,最近开发中收集的这篇文章主要介绍29、静态内部类访问,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.cup.local;
public class Test1 {
//成员内部类
共享所有的数据
静态的
非静态的 
//静态内部类 只能共享外部类的静态成员
public static void main(String[] args) {
// TODO Auto-generated method stub
Outer.Inner in = new Outer.Inner();
in.test();
/*
* 98
9
99
*/
}
}
class Outer{
int x=0;
static int y=99;
static class Inner{
int y1=9;
static int h=98;
public void test() {
System.out.println(h);
System.out.println(y1);
System.out.println(y);
//System.out.println(x); 
//Cannot make a static reference to the non-static field x
}
}
}

最后

以上就是鲜艳电脑为你收集整理的29、静态内部类访问的全部内容,希望文章能够帮你解决29、静态内部类访问所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部