免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1094 | 回复: 0
打印 上一主题 下一主题

Use zero-length arrays instead of null [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-06-17 18:35 |只看该作者 |倒序浏览
If a method returns an array which can be empty, do not allow it to
return null. Instead, return a zero-length array.
This simplifies the client, since they never have to check for null
values.
Example
import java.util.*;
public class StockPortfolio {
  //..elided
  /**
  * A field is implemented internally as a Collection,
  * but offered to the user of this class as an Array.
  * This array is never null, even if the underlying Collection is
  * empty.
  */
  public String[] getStocks() {
    /*
    NO_STOCKS plays a double role here. If there are elements in fStocks, then
    toArray will allocate a new array, using NO_STOCKS simply as an indicator
    of the proper type to use. If fStocks has no elements at all, then toArray
    will simply return the NO_STOCKS array itself.
    */
    return (String[]) fStocks.toArray(NO_STOCKS);
  }
  // PRIVATE //
  /** The underlying collection.  */
  private List fStocks;
  /** A constant, empty array, to be used instead of a null array.  */
  private static final String[]  NO_STOCKS = new String[0];
}
Another alternative is to use a collection instead of an array, if possible.
The
Collections
class contains these constants, which you may find useful :


  • Collections.EMPTY_LIST

  • Collections.EMPTY_SET

  • Collections.EMPTY_MAP

               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/52621/showart_1003926.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP