CompareTo

aniamamajtm20 - 6 déc. 2019 à 22:24
Twinuts Messages postés 5375 Date d'inscription dimanche 4 mai 2003 Statut Modérateur Dernière intervention 14 juin 2023 - 10 déc. 2019 à 15:30
Bonjour,
S'il vous plait comment faire l'appel de la méthode compareTo?

1 réponse

Twinuts Messages postés 5375 Date d'inscription dimanche 4 mai 2003 Statut Modérateur Dernière intervention 14 juin 2023 111
10 déc. 2019 à 15:30
Salut,

compareTo sur un String ?
Si oui, au plus simple si la fonction retourne:
- Un entier positif si la chaîne str1 arrive avant str2.
- 0 les chaînes sont identiques.
- Un entier négatif si la chaîne str1 arrive apres str2

String str1 = "Hello";
String str2 = "world";

int cmp = str1.compareTo(str2);


0
Rejoignez-nous