当前位置: 代码迷 >> 综合 >> java中运行时异常 the operator(什么什么)is undefinded for the argument byte[s] 的原因之一
  详细解决方案

java中运行时异常 the operator(什么什么)is undefinded for the argument byte[s] 的原因之一

热度:47   发布时间:2023-09-19 08:43:20.0

the operator(什么什么)is undefinded for the argument byte[s]:这句话的意思是:出现这个异常所对应的代码语句,在进行赋值或者判断,运算符的左边不存在运算符右边的类型。也就是把基本类型赋值给引用类型了。

原因是:在java中八种基本数据类型的默认值为0或者false, null是所有引用类型的默认值。

  相关解决方案