Java for Testers #5 - Difference Between String Literal and String Object

preview_player
Показать описание
In this Java for Testers tutorial we will learn what is the Difference Between String Literal and String Object in Java.

This is very common interview question and this tutorial will help you in understanding the concept of String literal and String Object in details so you can easily answer this interview question.

Help me in spreading the knowledge, please hit LIKE, SHARE and SUBSCRIBE for latest tutorials. More tutorial playlists below:

🔶 ENROL IN MANY FREE TRAININGS ON RCV ACADEMY PORTAL 🔶

🔶 FOLLOW US ON TWITTER 🔶

🔶 LIKE US ON FACEBOOK 🔶

🔶 OUR TUTORIAL WEBSITES 🔶

🔶 GET MY TRAININGS ON UDEMY 🔶

#JavaForTesters #JavaForTestersTutorial #JavaBeginnersTutorial #JavaForSelenium #JavaForSeleniumTesters #TestAutomation #SeleniumWebDriverJava #RcvAcademy #SoftwareTestingMentor
Рекомендации по теме
Комментарии
Автор

Thank you so much sir for helping people like me who wants to switch their career.

prajnaparamita
Автор

you are creating a revolution. just keep it up sir.

aniketbose
Автор

I’m about to start my bootcamp in a few days and your videos are really helpful!

Ohotnikova_
Автор

wow ..brilliant explanation ...Salute !!!

MrWadimann
Автор

public class DemoOne {

public static void main(String[] args) {
String str1 = new String();
str1 = "padala";
String str2 = "padala";
System.out.println(str1 == str2);


}

}

I am getting result as true. Please explain.

praveenkumarpadala