- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Java Strings Are Immutable… But Then Why Does This Code Work? 🤯
Most developers know that Strings are immutable in Java, but very few understand what actually happens internally.
When you write:
String s1 = "Rohit";
s1 = "Mohit";
It may look like the String is being modified.
But in reality, the original object is not changed.
Instead, the reference variable starts pointing to a new String object, while the old object remains in memory and becomes eligible for garbage collection.
This is how Java maintains String immutability.
Now tell me in the comments 👇
Will this code compile?
String s1 = "Single";
s1[0] = 'C';
#Java
#JavaProgramming
#JavaDeveloper
#Programming
#Coding
#SoftwareEngineering
#ProgrammingFacts
#CodingTips
#Developers
#Shorts
Видео Java Strings Are Immutable… But Then Why Does This Code Work? 🤯 канала RohitAsync
When you write:
String s1 = "Rohit";
s1 = "Mohit";
It may look like the String is being modified.
But in reality, the original object is not changed.
Instead, the reference variable starts pointing to a new String object, while the old object remains in memory and becomes eligible for garbage collection.
This is how Java maintains String immutability.
Now tell me in the comments 👇
Will this code compile?
String s1 = "Single";
s1[0] = 'C';
#Java
#JavaProgramming
#JavaDeveloper
#Programming
#Coding
#SoftwareEngineering
#ProgrammingFacts
#CodingTips
#Developers
#Shorts
Видео Java Strings Are Immutable… But Then Why Does This Code Work? 🤯 канала RohitAsync
Комментарии отсутствуют
Информация о видео
10 марта 2026 г. 21:03:32
00:00:27
Другие видео канала





