- new BufferedReader(new FileReader("d:\\a\\file.txt"))
- <font color="red">//1</font>
- <font color="black">public class Test{
- public static void main(String[] args) throws Exception{
- new Runnable(){
- public void run()
- {
- System.out.println("这个我们叫做匿名内部类");
- }};
- }
- }</font>
- <font color="red"> //2</font>
复制代码 1是用来操作文件的
2 我们叫做匿名内部类
两者的区别以及作用呢?
|