定义一个包含私有成员变量和函数的类,再定义一个内部类,在内部类函数中访问外部成员变量,
并调用外部函数。在外部类函数中创建内部类对象,调用内部类函数。
- public class Test6 {
- public static void main(String[] args) {
- Outer outer=new Outer();
- outer.method();
- }
- }
- class Outer{
- private int num=10;
- void method(){
- Inner inner=new Inner();
- inner.function();
- }
- private void show(){
- System.out.println(num);
- }
- class Inner{
- void function(){
- int squ=num*num;
- System.out.println(squ);
- }
- show();
- }
- }
复制代码
这道题该怎么做?为什么我的代码有错误 |
|