Java中的null是什么?

  • As we know null is an important concept in every language not only in Java but here we will study various factors regarding null.

    我们知道null在每种语言中都是重要的概念,不仅在Java中,在这里我们还将研究有关null的各种因素。

  • null is a very critical factor that means we need to focus when we work with null.

    null是一个非常关键的因素,这意味着我们在处理null时需要重点关注。

  • null is a keyword in Java and it is related to NullPointerException and NullPointerException is a package in java.lang package like this java.lang.NullPointerException.

    null是Java中的关键字,它与NullPointerException相关,而NullPointerException是java.lang包中的一个包,例如java.lang.NullPointerException 。

  • We will see NullPointerException throw if we perform operations with or without null in Java.

    如果在Java中执行带或不带null的操作,我们将看到NullPointerException抛出。

In a general way we will discuss a few cases and the cases are given below...

通常,我们将讨论一些情况,下面给出了这些情况。

Case 1: We know that null is cases sensitive

情况1:我们知道null是区分大小写的

Here, we will see why null is case sensitive in Java and null is a keyword in Java that's why null is case sensitive because all the keywords in java are case sensitive.

在这里,我们将了解为什么null在Java中是区分大小写的,null是 Java中的关键字 ,这就是为什么null是区分大小写的原因,因为java中的所有关键字都区分大小写。

Note:

注意:

Case sensitive means the word written in small letters and Capital letters has different meanings for example: null, NULL(Both are different).

区分大小写意味着用小写字母和大写字母写的单词具有不同的含义,例如:null,NULL(两者都不同)。

In java (null) is valid but if we write (NULL, 0, Null), etc these word is invalid and there is no sense).

在Java中(null)是有效的,但是如果我们写(NULL,0,Null)等,则这些单词无效,没有任何意义。

Example:

例:

class NullCaseSensitive{
public static void main(String[] args) throws Exception{
/*We are assigning null in str1 and it will execute without any error*/
String str1 = null;
System.out.println("The value of str1 is "+str1);
/*  We are assigning Null in str2 and NULL in str3 
and it will give compile time error  because 
Null and NULL is invalid in java
*/
/*
String str2 = Null;
System.out.println("The value of str2 is "+str2);
String str3 = NULL;
System.out.println("The value of str3 is "+str3);
*/
}
} 

Output

输出量

E:\Programs>javac NullCaseSensitive.java
E:\Programs>java NullCaseSensitive
The value of str1 is null

Case 2: We know that Reference variable hold null by default

情况2:我们知道Reference变量默认为null

  • In Java, the Integer reference variable holds null value by default at the time of object instantiation or in other words if we don't assign any value from our end at the time of object instantiation.

    在Java中,默认情况下,Integer参考变量在对象实例化时保留null值,换句话说,如果我们在对象实例化时未从结尾分配任何值,则默认为null。

  • In Java, String reference hold null by default at the time of object instantiation if we don't assign any other value at the time of object instantiation from our end.

    在Java中,如果我们从结束起就没有在对象实例化时分配任何其他值,则对象实例化时String引用默认情况下为null。

  • In Java, Object reference hold null by default at the time of object instantiation if we don't assign any other value at the time of object instantiation from our end.

    在Java中,如果在对象实例化开始时不分配任何其他值,则对象实例化时对象引用默认为null。

Example:

例:

class ReferenceVariable {
// Declaring Reference Variable
String str;
Object obj;
Integer in ;
}
class Main {
public static void main(String[] args) throws Exception {
ReferenceVariable rv = new ReferenceVariable();
System.out.println("The default value of the Object reference is " + rv.obj);
System.out.println("The default value of the String reference is " + rv.str);
System.out.println("The default value of the Integer reference is " + rv.in);
}
}

Output

输出量

The default value of the Object reference is null
The default value of the String reference is null
The default value of the Integer reference is null

Case 3: If we assign null to primitive data type then we will get a compile-time error

情况3:如果将null赋给原始数据类型,则将获得编译时错误

Example:

例:

class AssignNullToPrimitive {
public static void main(String[] args) {
char ch = null;
int i = null;
/* We will get error here because we 
can'’'t null to primitive datatype*/
System.out.println("The value of the char is " + ch);
System.out.println("The value of the int is " + i);
}
}

Output

输出量

E:\Programs>javac AssignNullToPrimitive.java
AssignNullToPrimitive.java:5: error: incompatible types
char ch = null;
^
required: char
found:    <null>
AssignNullToPrimitive.java:6: error: incompatible types
int i = null;
^
required: int
found:    <null>
2 errors

Case 4: If we check whether an object is an instance of a class, interface, etc. it returns true if an object is not an instance of null (i.e the value of the expression is not null)else return false

情况4:如果我们检查对象是否是类,接口等的实例,则如果对象不是null的实例(即表达式的值不为null),则返回true,否则返回false

Example:

例:

class CheckObjectInstanceOf {
public static void main(String[] args) throws Exception {
String str = null;
Double d = null;
Float f = 10.0f;
System.out.println("Is str is an instanceof String " + (str instanceof String));
System.out.println("Is f is an instanceof Float " + (f instanceof Float));
System.out.println("Is d is an instanceof Double " + (d instanceof Double));
}
}

Output

输出量

Is str is an instanceof String false
Is f is an instanceof Float true
Is d is an instanceof Double false

翻译自: https://www.includehelp.com/java/what-is-null-in-java.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377138.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《MySQL——分区表小记》

分区表的组织形式 以年份为分割方式&#xff0c;对表进行分割&#xff1a; CREATE TABLE t (ftime datetime NOT NULL,c int(11) DEFAULT NULL,KEY (ftime) ) ENGINEInnoDB DEFAULT CHARSETlatin1 PARTITION BY RANGE (YEAR(ftime)) (PARTITION p_2017 VALUES LESS THAN (201…

实战Windows下安装boost

Boost大部分组件无需编译可直接包含头文件使用&#xff0c;但还有一些库需要编译成静态库或动态库才能使用。可使用下文将提到的bjam工具&#xff1a;bjam --show-libraries 查看必须编译才能使用的库。 编译安装环境&#xff1a;Win7&#xff0c;VS2008(msvc-9.0) 1. 下载boos…

postgresq dur_DUR的完整形式是什么?

postgresq dur杜尔(DUR)&#xff1a;您还记得吗&#xff1f; (DUR?: Do You Remember?) DUR? is an abbreviation of "Do You Remember?". DUR&#xff1f; 是“您还记得吗&#xff1f;”的缩写。 。 It is an expression, which is commonly used in messaging…

gsettings-desktop-schemas : 破坏: mutter (< 3.31.4) 但是 3.28.4-0ubuntu18.04.2 正要被安装解决方案

完整报错&#xff1a; dyydyy-Lenovo-ThinkBook-14-IIL:~$ sudo apt install build-essential 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 有一些软件包无法被安装。如果您用的是 unstable 发行版&#xff0c;这也许是 因…

程序内存检测

本文参考自&#xff1a;http://www.cnblogs.com/hebeiDGL/p/3410188.html static System.Windows.Threading.DispatcherTimer dispacherTimer;static string total "DeviceTotalMemory";static string current "ApplicationCurrentMemoryUsage";static s…

动态规划天天练1

本来很久以前就打算每天练一道动态规划题的&#xff0c;但每每由于作业太多而中断&#xff0c;现在终于停课了......废话不多说&#xff0c;第一道题就给了我迎头一棒&#xff0c;不仅想了很久&#xff0c;连题解都看了很久。。。水平相当不足啊啊&#xff0c;不多说废话&#…

AAS的完整形式是什么?

AAS&#xff1a;活着和微笑 (AAS: Alive And Smiling) AAS is an abbreviation of "Alive And Smiling". AAS是“活着和微笑”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media networking sites like Facebook, Y…

《MySQL 8.0.22执行器源码分析(1)——execute iterator一些记录》

目录一条语句的函数调用栈顺序8.0使用迭代器模式改进executorint *handler*::ha_rnd_next(*uchar* **buf*)int *TableScanIterator*::Read()int FilterIterator :: Read&#xff08;&#xff09;int HashJoinIterator::Read()int NestedLoopIterator :: Read&#xff08;&#…

关于autoupgader的狗屎问题

由于win7和xp的权限问题&#xff0c;导致这个自动升级玩意不正常。这个狗屎问题很简单&#xff0c;把exe文件的兼容性设定该一下。真是气死洒家了。转载于:https://www.cnblogs.com/usegear/p/3679097.html

strcspn函数

函数原型&#xff1a;extern int strcspn(char *str1,char *str2) 参数说明&#xff1a;str1为参照字符串&#xff0c;即str2中每个字符分别与str1中的每个字符比较。 所在库名&#xff1a;#include <string.h> 函数功能&#xff1a;以str1为参照&#xff0c…

c语言 sqlite_SQLite与C语言

c语言 sqliteSQLite数据库简介 (Introduction to SQLite database) SQLite is a relational database; it is used for embedded devices. Now a day it is using worldwide for different embedded devices. SQLite是一个关系数据库。 它用于嵌入式设备。 如今&#xff0c;它已…

《MySQL 8.0.22执行器源码分析(2)解读函数 ExecuteIteratorQuery》

函数代码 bool SELECT_LEX_UNIT::ExecuteIteratorQuery(THD *thd) {THD_STAGE_INFO(thd, stage_executing);DEBUG_SYNC(thd, "before_join_exec");Opt_trace_context *const trace &thd->opt_trace;Opt_trace_object trace_wrapper(trace);Opt_trace_object…

C语言,如何产生随机数

1. 基本函数 在C语言中取随机数所需要的函数是: int rand(void);void srand (unsigned int n); rand()函数和srand()函数被声明在头文件stdlib.h中,所以要使用这两个函数必须包含该头文件: #include <stdlib.h> 2. 使用方法 rand()函数返回0到RAND_MAX之间的伪随机数(pse…

MongoDB源码概述——内存管理和存储引擎

数据存储&#xff1a; 之前在介绍Journal的时候有说到为什么MongoDB会先把数据放入内存&#xff0c;而不是直接持久化到数据库存储文件&#xff0c;这与MongoDB对数据库记录文件的存储管理操作有关。MongoDB采用操作系统底层提供的内存文件映射&#xff08;MMap&#xff09;的方…

OBTW的完整形式是什么?

OBTW&#xff1a;哦&#xff0c;顺便说一下 (OBTW: Oh, By The Way) OBTW is an abbreviation of "Oh, By The Way". OBTW是“哦&#xff0c;顺便说一下”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media network…

SharePoint 2010 Form Authentication (SQL) based on existing database

博客地址 http://blog.csdn.net/foxdaveSharePoint 2010 表单认证&#xff0c;基于现有数据库的用户信息表本文主要描述本人配置过程中涉及到的步骤&#xff0c;仅作为参考&#xff0c;不要仅限于此步骤。另外本文通俗易懂&#xff0c;适合大众口味儿。I. 开启并配置基于声明的…

《MySQL 8.0.22执行器源码分析(3.1)关于RowIterator》

目录RowIteratorInit()Read()SetNullRowFlag()UnlockRow()StartPSIBatchMode()EndPSIBatchModeIfStarted()real_iterator()RowIterator 使用选定的访问方法读取单个表的上下文&#xff1a;索引读取&#xff0c;扫描等&#xff0c;缓存的使用等。 它主要是用作接口&#xff0c;但…

hdu 2432法里数列

这题本来完全没思路的&#xff0c;后来想一想&#xff0c;要不打个表找找规律吧。于是打了个表&#xff0c;真找到规律了。。。 打表的代码如下&#xff1a; int n; void dfs(int x1, int y1, int x2, int y2) {if (y1 y2 < n) {dfs(x1, y1, x1 x2, y1 y2);printf("…

python学习笔记四——数据类型

1.数字类型&#xff1a; 2.字符串类型&#xff1a; 切片&#xff1a;a[m:n:s] m:起始值 n:结束值&#xff08;不包括n&#xff09; s:步长&#xff0c;负数表示从后向前取值 3.序列&#xff1a;列表&#xff0c;元组和字符串都是序列 序列的两个主要特点是索引操作符和切片…

小狐狸ChatGPT系统 不同老版本升级至新版数据库结构同步教程

最新版2.6.7下载&#xff1a;https://download.csdn.net/download/mo3408/88656497 小狐狸GPT付费体验系统如何升级&#xff0c;该系统更新比较频繁&#xff0c;也造成了特别有用户数据情况下升级时麻烦&#xff0c;特别针对会员关心的问题出一篇操作教程&#xff0c;本次教程…