码迷,mamicode.com
首页 > 其他好文 > 详细

io使用的设计模式

时间:2017-09-10 12:37:56      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:装饰者   bsp   amr   使用   buffer   txt   input   nbsp   read   

File f = new File("c:/a.txt");

1.

FileInputStream fis = new FileInputStream(f);

2.

Reader r = new InputStreamReader(fis);

3.

BufferedReader br = new BufferedReader(r);

第1,2步使用的是适配器模式

第3步使用的是装饰者模式

 

io使用的设计模式

标签:装饰者   bsp   amr   使用   buffer   txt   input   nbsp   read   

原文地址:http://www.cnblogs.com/xwzp/p/7500440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!