如何最初将 null 设置为整数变量而不是“0”。我已经知道默认情况下所有 int 值都是“0”。我使用String.valueOf()
了方法等。我不想打印为“null”。我想像“”一样打印空白。我得到数字格式异常。请为此提供一种解决方案。
提前致谢
这是代码
public class IntegerDemo {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String id="";
System.out.println(""+Integer.parseInt(id));
}
}