Java中的null是否为文字?

Java中的null是null类型的文字。不能将其强制转换为基本类型,例如int。浮动等,但可以强制转换为引用类型。此外,null不一定具有值0。

给出了一个在Java中演示null的程序,如下所示:

示例

public class Demo {
   public static void main(String args[]) {
      String str = null;
      System.out.println("Value of str is: " + str);
   }
}

输出结果

Value of str is: null

现在让我们了解上面的程序。

在该main()方法中,String str初始化为null。然后打印str的值。演示此代码段如下:

String str = null;
System.out.println("Value of str is: " + str);