为了账号安全,请及时绑定邮箱和手机立即绑定

为什么输入的字符串无法识别

package com.imooc2;

import java.util.Scanner;

public class Initail2 {


public static void main(String[] args) {

// TODO Auto-generated method stub

  System.out.println("请输入形状:");

  Scanner s = new Scanner(System.in);

  String str = null;

  str = s.next();

  if(str=="圆形") {

  shape shape1=new circle();

  shape1.girth();

  }

  else if(str=="矩形"){

  shape shape2=new rectangle();

  shape2.girth();}

  else{

  System.out.println("请输入圆形或矩形");

  }

  System.out.println(str);

 

}


}

运行的时候 输入 圆形和矩形 不会识别

正在回答

1 回答

有什么错误提示吗?

0 回复 有任何疑惑可以回复我~
#1

edawrdzk 提问者

忘了。不过我后来if()修改为str.equals("矩形")就能用了。 ==是针对首位地址。equals针对内容。我觉得因为这个原因。
2015-06-27 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么输入的字符串无法识别

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信