Java中Stream的close

 最近在精简代码,发现每次new一个ByteArrayInputStream然后再new一个DataInputStream,然后还要把两个都close,看着都恶心,真的要这么写吗?

首先,实在搞不懂为什么ByteArrayInputStream也要close,完全没有意义吗!好在现在java也开源了,看了一下源代码,发现close还真是多余的:

  1.      /**
  2.      * Closing a <tt>ByteArrayInputStream</tt> has no effect. The methods in
  3.      * this class can be called after the stream has been closed without
  4.      * generating an <tt>IOException</tt>.
  5.      * <p>
  6.      */
  7.      public   void  close()  throws  IOException {
  8.     }

 

然后再说DataInputStream的close,如果是和File或者Socket关联的,close还真是有意义的,如果是和ByteArrayInputStream关联的,close就没有必要。猜也能猜出来会怎样实现,看了源码果然:

  1.     /**
  2.      * Closes this input stream and releases any system resources 
  3.      * associated with the stream. 
  4.      * This
  5.      * method simply performs <code>in.close()</code>.
  6.      *
  7.      * @exception  IOException  if an I/O error occurs.
  8.      * @see        java.io.FilterInputStream#in
  9.      */
  10.      public   void  close()  throws  IOException {
  11.     in.close();
  12.     }

 

结论:

如果是InputStream--->DataInputStream这样构建出来的,只要调用DataInputStream的close就可以了。

更为精简的做法是,如果从ByteArrayInputStream构建出来的,谁的close都不需要调用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值