Тёмный

#58 Object Class equals toString hashcode in Java 

Telusko
Подписаться 2,4 млн
Просмотров 96 тыс.
50% 1

Check out our courses:
Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : bit.ly/java-spring-cloud
Udemy Courses:
Java:- bit.ly/JavaUdemyTelusko
Spring:- bit.ly/SpringUdemyTelusko
Java For Programmers:- bit.ly/javaProgrammers
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusko.com/
In this lecture we are discussing about object class:
-- every class in java inherit object class
-- in this lecture we see some member method of object class
public native int hashCode();
public boolean equals( Object);
public String toString();
1)hashCode() method:
In Java, the hashCode () method is a method that is defined in the Object class,
which is the parent class of all classes in Java. It returns an integer value that
represents the unique hash code of an object.
2)equals(Object) method:
equals(Object obj) is the method of Object class. This method is used to compare
the given objects. It is suggested to override equals(Object obj) method to get our own equality condition on Objects.
3)toString() method:
We typically generally do use the toString() method to get the string representation of an object. It is very important
and readers should be aware that whenever we try to print the object reference then internally toString() method is invoked.
If we did not define the toString() method in your class then the Object class toString() method is invoked otherwise our
implemented or overridden toString() method will be called.
case 1: class which not override object class toString(), hashCode(), equals() method
class Mobile{
String model;
int price;
}
class Main{
public static void main(String []args){
Mobile mb1=new Mobile();
mb1.model="Apple";
mb1.price=100000;
Mobile mb2=new Mobile();
mb2.model="Apple";
mb2.price=100000;
System.out.println(mb1); //Internally mb1.toString() is called and print Mobile@4617c264
System.out.println(mb2); // Internally mb2.toString() is called and print Mobile@36baf30c
//use of equals() method to compare to object
boolean result =mb1.equals(mb2); //right now it give false result because by default implementation of equals() method compare reference of two objects
System.out.println(result); //false
//use of hashCode()
System.out.println(mb1.hashCode()); //1175962212
System.out.println(mb2.hashCode()); //918221580 , provide some unique value
}
}
case 2: class can override object class hashCode(), toString(), equals()
class Mobile{
String model;
int price;
@Override
public String toString(){
return "Model: "+model+" and price: "+price;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((model == null) ? 0 : model.hashCode());
result = prime * result + price;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Mobile other = (Mobile) obj;
if (model == null) {
if (other.model != null)
return false;
} else if (!model.equals(other.model))
return false;
if (price != other.price)
return false;
return true;
}
}
class Main{
public static void main(String []args){
Mobile mb1=new Mobile();
mb1.model="Apple";
mb1.price=100000;
Mobile mb2=new Mobile();
mb2.model="Apple";
mb2.price=100000;
//use of toString() method, overrides method
System.out.println(mb1); //Internally mb1.toString() is called and print Model: Apple and price: 100000
System.out.println(mb2); // Internally mb2.toString() is called and print Model: Apple and price: 100000
//use of equals() method to compare two object, overrides method
boolean result =mb1.equals(mb2); //right now it give true result because we override equals() method
System.out.println(result); //true
//use of hashCode()
System.out.println(mb1.hashCode()); //1967873639 due to overrides hashcode method
System.out.println(mb2.hashCode()); //1967873639
System.out.println(mb1==mb2);
}
}
Note: it is not mandatory to override every member method of object class but it is advice able
to override toString() and equals() method to compare and print own object.
Github repo : github.com/navinreddy20/Javac...
Donation:
PayPal Id : navinreddy20
www.telusko.com

Наука

Опубликовано:

 

17 янв 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 45   
@nitishkumar-kt1nb
@nitishkumar-kt1nb 4 месяца назад
🎯 Key Takeaways for quick navigation: Every class in Java implicitly extends the Object class. The Object class provides methods like equals, hashCode, toString, etc., even if not explicitly defined in a class. The toString method returns a string representation of the object, including the class name and hash code. The hashCode method generates a unique identifier for objects based on their values. Using equals method from the Object class compares objects based on their memory addresses, but custom equals method can compare based on values. Implementing custom equals and hashCode methods ensures proper comparison and adherence to Java best practices. IDEs can automatically generate equals and hashCode methods based on selected variables, simplifying implementation. Understanding and utilizing methods from the Object class such as toString and equals is essential in Java programming. Made with HARPA AI
@wallshider
@wallshider 2 месяца назад
Christ almighty.. I've been pulling my hair trying to understand chatgpt to explain to me why I need hashcode in operator == overriding and here you go, explaining everything! Thank you!!
@shreyamkundu
@shreyamkundu 9 дней назад
Sir your teaching style is too good!! It's very easy to grasp the concepts.
@zemariamkiros5133
@zemariamkiros5133 2 месяца назад
I swear your are the only channel I see that explains everything perfectly.
@zakirdeshmukh9916
@zakirdeshmukh9916 Год назад
very well explained sir and the example of Laptop class is also very good. thanks for providing this for free❤❤
@souvikadhikary2429
@souvikadhikary2429 Год назад
I saw yoour previous video and after seen this video I got more clearity. Thank you Sir
@rishabhagarwal3404
@rishabhagarwal3404 Год назад
Thank you sir. Amazing video as always
@mohammadsulthan9379
@mohammadsulthan9379 Год назад
Super sir, i am a big fan of your work.
@merrylia8316
@merrylia8316 9 месяцев назад
what is hashcode for? why do we use the equals method. like why modify it?
@robsoonz7766
@robsoonz7766 Год назад
Good video. Thank you for understanding this.
@jaredwilliams4994
@jaredwilliams4994 6 месяцев назад
Greatest Java Tutorial ever!!
@ghosts857
@ghosts857 Год назад
Hello sir I don't under stand 2 " . " here please explain
@user-kk1ym2go6o
@user-kk1ym2go6o 2 месяца назад
Thank you so much!!. Only because of you I am this able to hold a good package!
@Ryu.86
@Ryu.86 22 дня назад
Thank you! I was struggling to do a toString()
@halimgiwa5359
@halimgiwa5359 Месяц назад
In the toString() method, we simply used "model" and "price" but in the equals() method we had to use "this.model" and "this.price," why ?
@28santagabo
@28santagabo 24 дня назад
great explanation sir
@kavya4132
@kavya4132 4 месяца назад
great explanation. Thank you!
@SamA-nq4cf
@SamA-nq4cf 22 дня назад
This is old way now we have lombok library it's easyiest way to implement make a video for that. Thank you
@aileenchan3741
@aileenchan3741 Год назад
Thank you for that explanation! So easy to follow and understand.
@Sartaj_Ashraf
@Sartaj_Ashraf 9 месяцев назад
In the first == it should return false they are two different objects with two different locations.. So equall methods returns true if the reference are same means they lie on the same location.
@milankbudha
@milankbudha 11 месяцев назад
thank u so much....❤❤❤
@koushikjatoth6000
@koushikjatoth6000 9 месяцев назад
Can I get tutorial ppt
@bhargav7136
@bhargav7136 11 месяцев назад
Why we use hash code
@oshadhaedirisinghe1455
@oshadhaedirisinghe1455 3 месяца назад
Thank you
@pankajubhare1699
@pankajubhare1699 11 месяцев назад
You just awesome
@sharabugnanesh3098
@sharabugnanesh3098 Год назад
model model 👌
@brandonjablasone7544
@brandonjablasone7544 5 месяцев назад
What ide you use
@p.sabareesh2053
@p.sabareesh2053 8 дней назад
VS code
@farhodbekxamidov2013
@farhodbekxamidov2013 6 месяцев назад
👍
@ghosts857
@ghosts857 Год назад
this.model. equal () that please explain
@hieuthanh2735
@hieuthanh2735 7 месяцев назад
"this" means the current object which calls the method
@afifkhaja
@afifkhaja 5 месяцев назад
Awesome video but you didn't really explain the relationship between hashcode and equals
@kelvinirungu550
@kelvinirungu550 4 месяца назад
The Object class is the relationship between hashcode and equals because every class in Java implicitly extends the Object class.
@MrRobo-fi7of
@MrRobo-fi7of 3 месяца назад
@thecrazygamer7334
@thecrazygamer7334 9 месяцев назад
chomu padhane ka dhnage nahi hai
@keshavdeosharma7222
@keshavdeosharma7222 5 месяцев назад
bhai apne channel ki link send krdo tb
@harshsinghania6775
@harshsinghania6775 7 месяцев назад
I came to learn the generated code... But here you generated and skipped the actual use of each and every line in the code... Disappointed alien..
@user-is8xs7zb7m
@user-is8xs7zb7m 4 месяца назад
OMG! Do you know at least what you said? This is very sad for beginners
@SurendraGurjar2014
@SurendraGurjar2014 Год назад
Way of explaining is not good
@PriyaDharshini-gr5hk
@PriyaDharshini-gr5hk 10 месяцев назад
Why
@Psuedobot
@Psuedobot 10 месяцев назад
Just this one only
@hieuthanh2735
@hieuthanh2735 7 месяцев назад
If you want to understand more, you have to watch the previous video @@Psuedobot
@shubhammisal946
@shubhammisal946 6 месяцев назад
Right😢
@pubg_victor_gaming
@pubg_victor_gaming 6 месяцев назад
😂 acha mazaq hai
Далее
#59 Upcasting and Downcasting in Java
6:37
Просмотров 88 тыс.
Hamster Kombat 20 July Mini Game
00:13
Просмотров 10 млн
Украшаю чехлы 🎀
00:51
Просмотров 79 тыс.
Кто быстрее? (GTARP)
19:19
Просмотров 519 тыс.
.equals() vs. == in Java - The Real Difference
8:48
Просмотров 182 тыс.
#53 Packages in Java
12:20
Просмотров 166 тыс.
#61 Abstract Keyword in Java
12:09
Просмотров 131 тыс.
Java toString method 🎉
6:39
Просмотров 89 тыс.
#65 Need of Interface in Java
8:32
Просмотров 115 тыс.
Object-oriented Programming in 7 minutes | Mosh
7:34
Learn Hash Tables in 13 minutes #️⃣
13:26
Просмотров 332 тыс.