深入理解java中的null“类型”

作者:明明如月小角落 时间:2022-07-28 00:41:20 

本文研究的主要是java中的null“类型”的相关实例,具体介绍如下。

先给出一道简单的null相关的题目,引发我们对null的探讨,后面会根据官方语言手册对null“类型”进行解读。

题目:下面程序能正确运行吗?

深入理解java中的null“类型”

解析:

输出应该为 :haha

因为null 是可以强转为任何类类型的,所以前面((NULL)null)是合法的,但是null强转以后是无效对象,其返回值为null,(后面会作解释)

而haha方法是静态方法,静态方法使用静态绑定,不会抛出空指针异常。

如果把haha()函数变为非静态之后,将会抛出空指针异常。

再来一个例子:

深入理解java中的null“类型”

这道题其实和上面是差不多的。

结果还是输出“haha”

深入理解java中的null“类型”

Java Language Specification中我们可以看到

在4.1. The Kinds of Types and Values一节中提到:

There are two kinds of types in the Java programming language: primitive types (§4.2) and reference types (§4.3). ”
Type:
PrimitiveType
ReferenceType
There is also aspecial null type, the type of the expression null (§3.10.7, §15.8.1), which has no name.
Because the null type has no name, it is impossible to declare a variable of the null type or to cast to the null type.
The null reference is the only possible value of an expression of null type.
The null reference can always undergo a widening reference conversion to any reference type.
In practice, the programmer can ignore the null type and just pretend that null is merely a special literal that can be of any reference type.

我给翻译一下:

Java语言中有两种类型,一种是基本类型,还有一种是引用类型

还有一个特殊的null类型即表达式null的类型,它没有名字。

因为null类型没有名字,所以不可能声明为null类型的变量或者转换为null类型。

null引用是null类型表达式唯一可能的值。

null引用可以转换为任意引用类型。

实际上,程序员可以忽略null类型,可以认为null仅仅是一个可以成为任何引用类型的特殊符号。

看了这个一段,就比较豁然开朗了。

在5.2. Assignment Conversion一节中:

“A value of the null type (the null reference is the only such value) may be assigned to any reference type, resulting in a null reference of that type”

一个null类型(null(空)引用是这种类型的唯一的一个值)的值,可以赋值给任意类型,将返回一个该类型对象的空引用(其实还是null)。

在5.3. Method Invocation Conversion这一节有:

“A value of the null type (the null reference is the only such value) may be converted to any reference type.”

即“null可以被转换为任何引用类型。”

通过官方的语言手册,对null类型有了非常深刻的理解。

对我们编程以及以后求职笔试面试都有一定的帮助。

最后希望大家遇到一些奇怪的问题,除了百度外,尽量多去Stack Overflow网站上去搜索,也多去查官方手册。

来源:http://blog.csdn.net/w605283073/article/details/72896651

标签:java,null,类型
0
投稿

猜你喜欢

  • Android 获取屏幕高度,标题高度,状态栏高度(实例代码)

    2022-10-17 15:49:37
  • Android编程开发中ListView的常见用法分析

    2022-04-15 09:52:07
  • C#中判断、验证字符串是否为日期格式的实现代码

    2021-06-05 01:57:26
  • Android自定义控件简单实现侧滑菜单效果

    2023-10-30 16:56:57
  • mybatis中的if test判断入参的值问题

    2023-11-16 08:13:44
  • Android编程实现二级下拉菜单及快速搜索的方法

    2021-06-17 23:23:07
  • Java开发实现人机猜拳游戏

    2023-10-17 16:01:35
  • Java C++ 算法题解leetcode669修剪二叉搜索树示例

    2022-09-22 04:56:13
  • Java JUC中操作List安全类的集合案例

    2022-10-28 11:09:31
  • Java的JDBC中Statement与CallableStatement对象实例

    2022-11-14 17:22:08
  • Android运用BroadcastReceiver实现强制下线

    2021-07-20 19:49:29
  • springboot使用JPA时间类型进行模糊查询的方法

    2023-10-26 21:59:02
  • 详解Java中的Lambda表达式

    2021-08-17 00:06:00
  • C#基于正则表达式删除字符串中数字或非数字的方法

    2021-07-12 17:27:44
  • SimpleCommand实现图片下载(二)

    2023-05-21 00:25:17
  • Scala方法与函数使用和定义详解

    2021-10-05 06:34:12
  • Android实现USB扫码枪获取扫描内容

    2023-09-08 00:56:31
  • Java线程池用法实战案例分析

    2022-01-22 07:57:16
  • JAVA多线程知识汇总

    2021-08-03 09:04:47
  • Spring集成Swagger常见错误及解决办法

    2023-07-10 05:01:17
  • asp之家 软件编程 m.aspxhome.com