检测字符串是否相等
Posted xl4ng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测字符串是否相等相关的知识,希望对你有一定的参考价值。
Java中判断字符串是否相等应使用equals,==运算符比较的是两个字符串是否在同一个位置上。
package com.company;
public class Main {
public static void main(String[] args) {
String greeting = "Hello";
System.out.println("Hello".equals(greeting));//true
//不区分大小写
System.out.println("Hello".equalsIgnoreCase("hello"));//true
System.out.println(greeting=="Hello");//true
System.out.println(greeting.substring(0,3)=="Hel");//false
}
}
以上是关于检测字符串是否相等的主要内容,如果未能解决你的问题,请参考以下文章
Python range 数据类型 [学习 Python 必备基础知识][看此一篇就够了][range()][range 元素元素检测元素索引查找切片负索引][检测 range 对象是否相等](代码片
Python range 数据类型 [学习 Python 必备基础知识][看此一篇就够了][range()][range 元素元素检测元素索引查找切片负索引][检测 range 对象是否相等](代码片