-
守候你守候我
ruby判断字符串用"=="就可以。判断对象可以用"equal?"方法。此处与java相反。p str1==str2返回的结果应该是先打印"str1==str2"的结果后,然后再输出一个空行。这点可以查看相关api。所以msgbox显示的是nil(即返回的空行)。测试实例:irb(main):002:0> s=p "1"=="1"true=> nilirb(main):003:0> s=> nil
-
一只斗牛犬
String str1="abc";String str2=“bcd";if(str1.equals(str2)){system.out.println("str1和str2相等”);}用的是equals()方法
-
潇潇雨雨
c中是strstr.ruby 1.9.3中包含:include? other_str → true or false click to toggle sourceReturns true if str contains the given string or character."hello".include? "lo" #=> true"hello".include? "ol" #=> false"hello".include? ?h #=> true