Java8_Chapter02

Posted 咸鱼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java8_Chapter02相关的知识,希望对你有一定的参考价值。

 1 public class MeaningOfThis {   
 2     public final int value = 4;
 3     public void doIt() {   
 4         int value = 6;
 5         Runnable r = new Runnable(){
 6             public final int value = 5;
 7             public void run(){
 8                 int value = 10;
 9                 System.out.println(this.value);
10             }
11         };
12         r.run(); }
13     public static void main(String...args) {   
14         MeaningOfThis m = new MeaningOfThis();
15         m.doIt(); //输出多少
16     }
17 }
答案:5

 


以上是关于Java8_Chapter02的主要内容,如果未能解决你的问题,请参考以下文章

Java8_Chapter03

Java8_Chapter05

[linux][c/c++]代码片段02

vscode代码片段建议bug

java代码在片段活动中不起作用

Codeigniter 助手重复 HTML 代码片段