博客
关于我
在打印语句中如何打印这3个x变量?
阅读量:142 次
发布时间:2019-02-26

本文共 175 字,大约阅读时间需要 1 分钟。

Java类结构示例
class A {    int x = 1;    class B {        int x = 2;        void func() {            int x = 3;            System.out.println("示例输出");        }    }}    

转载地址:http://glgy.baihongyu.com/

你可能感兴趣的文章