标签:nts 新手 public level 使用 ext 调用 sys 视频下载
3.接口interface和private内部类协同工作【新手可忽略不影响继续学习】(视频下载) (全部书籍)
马克-to-win:由于是private内部类,外面无法访问甚至无法看到你编的源代码(如果在不同的包中),非常安全。外界只能调用接口中的方法。下例中访问不了Core,甚至你不知道有Core的存在。给你的就是外部的接口,供你使用。马克-to-win:我们一直没讲class
如何能private, 这里内部类时,就可以用private了。且内部类随便访问外部类的东西, 这就非常有力度了, 可以用到外部类所有的资源!
例2.3---本章源码
interface CoreI
{
void display();
}
class ShellMark_to_win {
int shell_x = 100;
static int n;
// 下面内部类是private,只能外层类的方法才能访问到, 非常安全
private class Core implements CoreI {
/*
下一句错误,马克-to-win:根据语法:静态的域或方法只能出现在静态类或最外层类上。The field m cannot be
declared static; static fields can only be declared in static inner
class or top level classes,*/
// static int m=9;
int y = 10; // y is local to core
public void display() {
shell_x=shell_x+20;
n=n+1;//马克-to-win:轻松访问外层类的静态变量
System.out.println("n is "+n+" display: shell_x and y " + shell_x + "
"+ShellMark_to_win.this.shell_x+ " " + y+ " "+this.y);
}
}
Core newC()
{
return new Core();
}
}
public class Test {
public static void main(String args[]) {
。。。。。。。。。。。。。。。。。
详情请进:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner4_web.html#InterfaceInnerClassCoop
接口interface和private私有内部类怎样一块配合着用?
标签:nts 新手 public level 使用 ext 调用 sys 视频下载
原文地址:https://www.cnblogs.com/mark-to-win/p/9694680.html