本文介绍了我什么时候可以使用“==”运营商?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从jls找到了引用:

I have found quote from jls:

但此代码

   String str= "";
   Number num = 1;
   System.out.println(str == num);

每个操作数都是引用!

表示这是不兼容的类型。

said that it is incompatible types.

在jls中哪些地方说这些类型应该兼容?

Where did in jls say that these types should be compatible ?

推荐答案

在(参考等式运算符==和!=):

In section 15.21.3 (Reference Equality Operators == and !=):

这篇关于我什么时候可以使用“==”运营商?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 11:51