我已经用几种不同的方法对此进行了测试。我比较的字符串s
与日志文件中显示的字符串完全相同。撇号是为了确保没有空格。有谁知道发生了什么?
import java.lang.reflect.Method;
import android.util.Log;
public class Button {
public Button () {
for(Method m1:MyOtherClass.class.getMethods()) {
String s = m1.getName();
if(s == "Update") {
Log.i("result","true");
}
Log.i("test", "'" + s + "'");
}
}
}