内部类调用
Posted zxrxzw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了内部类调用相关的知识,希望对你有一定的参考价值。
public class DotThis { //内布类 public class Inner { public int outer(int a ,int b) { return a+b; }; } //调用内部类 public static void main(String[] args) { Inner inner = new DotThis().new Inner();
System.out.print(inner.outer(1, 2)); } }
在main函数里面调用new 内部类必须是由主类调用的!!!!!
以上是关于内部类调用的主要内容,如果未能解决你的问题,请参考以下文章
在 Activity 内部,如何暂停 for 循环以调用片段,然后在按钮单击片段后恢复循环以重新开始