“ciąg Java nie jest równy” Kod odpowiedzi

ciąg Java nie jest równy

String name = "John"; 
 
// prints true to standard system output. 
System.out.print(!name.equals("Alex")); 
Helpless Hornet

nie równa Javie

// Int version
int i = 2;
if (i != 3) {}

// String version
String s = "a";
if(!s.equals("b")) {}
Thoughtful Trout

Ciąg Java równy

String first = "Hello";
String second = "hELLo";

if(first.equal(second)) { 
	// Check if first string is equal to second string. lower/upper case matter.
}

if(first.equalsIgnoreCase(second)) {
	// Check if first string is equal to second string. lower/upper does not matter.
}
Bredo

Odpowiedzi podobne do “ciąg Java nie jest równy”

Pytania podobne do “ciąg Java nie jest równy”

Więcej pokrewnych odpowiedzi na “ciąg Java nie jest równy” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu