Java String equals() 方法

返回上一级

Java String 对象的 equals() 方法用于将字符串与指定的对象比较

语法

public boolean equals(Object anObject)

参数

参数 说明
anObject 与字符串进行比较的对象

返回值

如果给定对象与字符串相等,则返回 true,否则返回 false

范例

下面的代码使用 equals() 方法检测两个字符串是否相等

public class Test {
    public static void main(String args[]) {
        String Str1 = new String("twle");
        String Str2 = Str1;
        String Str3 = new String("twle");
        boolean retVal;

        retVal = Str1.equals( Str2 );
        System.out.println("返回值 = " + retVal );

        retVal = Str1.equals( Str3 );
        System.out.println("返回值 = " + retVal );
    }
}

编译运行以上 Java 代码,输出结果如下

返回值 = true
返回值 = true

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.