字符串比较 - 机器人 [英] String comparison - Android

查看:120
本文介绍了字符串比较 - 机器人的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法用下面的code来比较两个字符串:

I'm unable to compare two strings using the following code:

我有一个名为性别的字符串,有男或女作为它的值。

I have a string named "gender" which will have "Male" or "Female" as its value.

if(gender == "Male")
   salutation ="Mr.";
if(gender == "Female")
   salutation ="Ms.";

这没有工作,所以我尝试了以下内容:

This didn't work, so I tried the following:

String g1="Male";
String g2="Female";
if(gender.equals(g1))
   salutation ="Mr.";
if(gender.equals(g2))
   salutation ="Ms.";

再次没有奏效。 是否有人可以告诉我如何使用if语句来比较两个字符串值。

Again, it didn't work. Can someone please tell me how to compare string values using the if statement.

推荐答案

试试这个

if(gender.equals("Male"))
 salutation ="Mr.";
if(gender.equals("Female"))
 salutation ="Ms.";

另外删除; (分号)在你的if语句

Also remove ;(semi-colon ) in your if statement

if(gender.equals(g1));

在Java中,最常见的错误新人满足使用==比较字符串之一。你要记住,==比较对象引用,而不是内容。

In Java, one of the most common mistakes newcomers meet is using == to compare Strings. You have to remember, == compares the object references, not the content.

这篇关于字符串比较 - 机器人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆