ruby – warning:条件字符串

前端之家收集整理的这篇文章主要介绍了ruby – warning:条件字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用下面的代码的第一位我收到两个警告消息:
警告:条件x2中的字符串字面值
if input == "N" || "n"
  #do this
else input == "L" || "l"
  #do this

而不是使用这个结果没有警告

if input == "N" || input == "n"
  #do this
else input == "L" || input == "l"
  #do this

我想知道为什么第一位代码会导致警告,并且使用它的缺点.

解决方法

更改输入==“N”|| “N”

input == "N" || input== "n"

你还必须使用else,而不是else

警告是说,而不是一个布尔值或测试,你有一个字符串字面值’n’,总是评估为真.

原文链接:https://www.f2er.com/ruby/273455.html

猜你在找的Ruby相关文章