/
alexShibanov
/
556677
Обзор
Документация
Войти
/
alexShibanov
/
556677
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
StringArray.java
19 строк
811 B
infinityXgojo
Create StringArray.java
13 окт 2023, 06:55
Не верифицирован
13 окт 2023, 06:55
663501c
Код
Авторство
О чём код?
public class StringComparison { public static void main(String a[]){ String str = "JavaTpoint is a great website to acquire knowledge"; StringBuffer obj = new StringBuffer("JavaTpoint is a great website to acquire knowledge"); if(str.contentEquals(obj)){ System.out.println("The content of the string is equal"); } else { System.out.println("The content of the string is not equal"); } StringBuffer obj1 = new StringBuffer("It is another string"); if(str.contentEquals(obj1)){ System.out.println("The content of the string is equal"); } else { System.out.println("The content of the string is not equal"); } } }