1.int型变量的值不能为空值null
2.Integer类表示一个int值,但可以包含一个空值null
3.判断Integer变量是否为空值null:Integer变量== null;Integer变量!= null
demo示例程序如下:文章来源:https://www.toymoban.com/news/detail-507122.html
public class Demo {
public static void main(String[] args) {
// 如果在后面判断int 类需==null 或!=null的情况下,可以将int类型改为Integer类型
// int i = null; // 打开本行注释将无法通过编译,int的值不能为空值null
Integer in = null; // Integer类表示一个int值,但可以包含一个空值null
// in = 1; // 赋一个int值
System.out.println(in == null);
}
}
运行结果:文章来源地址https://www.toymoban.com/news/detail-507122.html
到了这里,关于判断int或Integer变量值为空值null的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!