用户登录  |  用户注册
首 页商业源码原创产品编程论坛
当前位置:PB创新网文章中心Java

怎样避免NullPointerExceptions(原创)

减小字体 增大字体 作者:佚名  来源:本站整理  发布时间:2009-03-16 16:20:00
写JAVA程序,NullPointerExceptions会经常陪伴着你
因为JAVA中到处都是对象,而每一个对象都可能为Null
怎样能减少这种错误呢?
我觉得应该尽量调用那些已经确定被实例话的对象的方法
比如
private String name = "";  // 给它初始化一个值不让它为null

public boolean isNameEqual(String paraName) {
    return name.equals(paraName);
  }
就比下面这种要好
  public boolean isNameEqual(String paraName) {
    return newName.equals(name);  // 这样如果paraName为空的话就会抛出一个 NullPointerException }

当然,如果在程序中name可能被赋值为null的话
那就要这样写了
public boolean isNameEqual(String paraName) {
    if (name != null) {
      return name.equals(paraName);
    }
    else if (paraName != null) {  // name 为 null 而paraName 不是
      return false;
    }
    else {  // 都为空
return true;  // 根据你的需要,返回false也行
    }
  }

至于
public class Animator extends java.applet.Applet implements Runnable{
Vector images;
int imgNumber;
int currentImage=1;
Thread thisThread;
public void init(){
imgNumber=new Integer(getParameter("imgNumber")).intValue();
for (int x=0;x<imgNumber;x++)
{Image img=getImage(getDocumentBase(),"img"+(x+1)+".jpg");
images.addElement(img);
}
}

我觉得可以先给imgNumber=0;
然后还要判断
getParameter("imgNumber")是否为null
这样更好些

Tags:

作者:佚名

文章评论评论内容只代表网友观点,与本站立场无关!

   评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
PB创新网ourmis.com】Copyright © 2000-2009 . All Rights Reserved .
页面执行时间:3,000.00000 毫秒
Email:ourmis@126.com QQ:2322888 蜀ICP备05006790号