ruby中怎么样比较存储中文字符串的变量与中文字符串的常量是否相等
欢迎选择我的课程,让我们一起见证您的进步~~
All values in Ruby are objects, and there is no such thing as variables or constants. There is only a warning when you modify the reference content with a "constant" defined in uppercase letters.
So, you can just use == to compare directly.
==
All values in Ruby are objects, and there is no such thing as variables or constants. There is only a warning when you modify the reference content with a "constant" defined in uppercase letters.
So, you can just use
==
to compare directly.