equals是字符串比较用的,比如我有一个字符串String str = “hello”;我想看一下str是否真的是“hello”,就用equals,举例如下if(“hello”.equals(str)){ System.out.println(“ok”);}