java的equals问题
publicclassFactory{publicFruitgetInstance(){Fruitfruit=null;Stringstr=null;BufferedRe...
public class Factory {
public Fruit getInstance(){
Fruit fruit = null;
String str = null;
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
try {
str = buf.readLine();
} catch (IOException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
}
if(str.equals("Orange"))
{
fruit =new Orange();
}
if(str.equals("Apple"))
{
fruit =new Apple();
}
if(str.equals("Cherry"))
{
fruit =new Cherry();
}
System.out.println(fruit.getClass().getName());
return fruit;
}
}
请问在 这段代码交换equals两边的内容效果会一样吗?经我测试str.equals("Orange")能使用,但是改为
"Orange".equals(str)则通不过。 展开
public Fruit getInstance(){
Fruit fruit = null;
String str = null;
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
try {
str = buf.readLine();
} catch (IOException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
}
if(str.equals("Orange"))
{
fruit =new Orange();
}
if(str.equals("Apple"))
{
fruit =new Apple();
}
if(str.equals("Cherry"))
{
fruit =new Cherry();
}
System.out.println(fruit.getClass().getName());
return fruit;
}
}
请问在 这段代码交换equals两边的内容效果会一样吗?经我测试str.equals("Orange")能使用,但是改为
"Orange".equals(str)则通不过。 展开
2013-09-28
展开全部
有大小写的,最好用这个方法对比
boolean
equalsIgnoreCase(String anotherString)
Compares this String to another String, ignoring case
considerations.
boolean
equalsIgnoreCase(String anotherString)
Compares this String to another String, ignoring case
considerations.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
写成"Cherry".equals(str) 是没有错误的,我把你的类复制下来试过了,
把str 放在前面在你不输入的时候才会报错. 因为equals前面不能为null
把str 放在前面在你不输入的时候才会报错. 因为equals前面不能为null
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询