Home> Java> JavaBase> body text

How to express not equal in java

Release: 2019-12-14 14:39:38
Original
27340 people have browsed it

How to express not equal in java

Not equal to in java, it can be used between numbers! = means that strings can be compared using the equals method

public class TestA { public static void main(String[] args){ int a=5; int b=4; //数字或者对象地址之间不等于可以用!=符号来比较 System.out.println(a!=b); String str1="hello"; String str2="hi"; String str3="hello"; //字符串之间可以用equals方法来比较 System.out.println(str1.equals(str2)); //true表示相等,false表示不等 System.out.println(str1.equals(str3));
Copy after login

equals() method is used to compare a string with a specified object.

Syntax

public boolean equals(Object anObject)
Copy after login

Parameters

anObject -- The object to compare with the string.

Return value

Returns true if the given object is equal to the string; otherwise returns false.

For more java knowledge, please pay attention to thejava basic tutorialcolumn.

The above is the detailed content of How to express not equal in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!