ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

418,013 results

Related queries

abstract class in java

java comparator

java comparable interface

hashcode java

compareto java

tostring method java

override java

java object class

java object oriented programming

enum in java

instanceof java

Coding with John
.equals() vs. == in Java - The Real Difference

Complete Java course: https://codingwithjohn.thinkific.com/courses/java-for-beginners Watch now to learn the difference between ...

8:48
.equals() vs. == in Java - The Real Difference

221,052 views

4 years ago

Alex Lee
Java String Comparison Tutorial (Equals vs == in Java)

OFF ANY Springboard Tech Bootcamps with my code ALEXLEE1500. See if you qualify for the JOB GUARANTEE!

6:45
Java String Comparison Tutorial (Equals vs == in Java)

94,362 views

5 years ago

Telusko
#58 Object Class equals toString hashcode in Java

Check out our courses: Java Spring Boot AI Live Course: https://go.telusko.com/JavaSpringBootAI Coupon: TELUSKO20 (20% ...

12:00
#58 Object Class equals toString hashcode in Java

207,955 views

2 years ago

Deege
Overriding equals and hashCode in Java - 039

How can I tell if two Java instances represent the same instance? And what does class equality mean in Java? The question here ...

6:30
Overriding equals and hashCode in Java - 039

86,498 views

10 years ago

People also watched

Coding with John
Java Enums Explained in 6 Minutes

All about Enums in Java - Full tutorial with concrete examples. Enums (short for Enumerations) are used in Java to hold types that ...

5:58
Java Enums Explained in 6 Minutes

316,420 views

4 years ago

Coding with John
Java Main Method Explained - What Does All That Stuff Mean?

Complete Java course: https://codingwithjohn.thinkific.com/courses/java-for-beginners Full tutorial - What does public static void ...

7:10
Java Main Method Explained - What Does All That Stuff Mean?

294,099 views

5 years ago

Coding with John
This Keyword in Java Full Tutorial - How to Use "this"

What does the "this" keyword mean in Java? How and when do you use "this"? We'll cover all of that (and all of "this") in this video.

7:39
This Keyword in Java Full Tutorial - How to Use "this"

191,783 views

4 years ago

Bro Code
Java Full Course for free ☕ (2025)

java #javatutorial #javacourse Java tutorial for beginners full course 2025 *My original Java 12 Hour course* ...

12:00:00
Java Full Course for free ☕ (2025)

2,831,262 views

11 months ago

Bro Code
Learn Java generics in 13 minutes! 📦

java #javatutorial #javacourse This is an introduction to the concept of generics in Java. // Generics = A concept where you can ...

13:56
Learn Java generics in 13 minutes! 📦

54,210 views

1 year ago

Bro Code
METHODS in Java are easy 📞

java #javatutorial #javacourse 00:00:00 introduction 00:01:38 methods 00:03:37 arguments 00:04:37 parameters 00:08:23 return ...

15:25
METHODS in Java are easy 📞

43,181 views

1 year ago

cours-en-ligne
05 - Méthode hashCode(), liée à la méthode equals()

... avoir même hb code c'est quelque chose qu'il faut absolument savoir c'est quelque chose d'extrêmement important en java.

5:16
05 - Méthode hashCode(), liée à la méthode equals()

4,905 views

4 years ago

Nick White
LeetCode Subarray Sum Equals K Solution Explained - Java

The Best Place To Learn Anything Coding Related - https://bit.ly/3MFZLIZ Preparing For Your Coding Interviews? Use These ...

10:08
LeetCode Subarray Sum Equals K Solution Explained - Java

102,486 views

6 years ago

Coding with John
Lambda Expressions in Java - Full Simple Tutorial

Full tutorial for Lamba expressions in Java. Complete Java course: https://codingwithjohn.thinkific.com/courses/java-for-beginners ...

13:05
Lambda Expressions in Java - Full Simple Tutorial

909,553 views

3 years ago

Bro Code
Learn Java AGGREGATION in 9 minutes! 🏫

java #javatutorial #javacourse public class Main { public static void main(String[] args) { // Aggregation = Represents a "has-a" ...

9:26
Learn Java AGGREGATION in 9 minutes! 🏫

22,451 views

1 year ago

Appficial
Overriding the Object equals Method - Java Override Example - Comparing Objects - APPFICIAL

equals() is a method that comes from the Object class. Equals compares the calling object with another object and returns true if ...

6:21
Overriding the Object equals Method - Java Override Example - Comparing Objects - APPFICIAL

50,147 views

7 years ago

Crack Concepts
DIFFERENCE BETWEEN "equals() method" and "== operator" IN JAVA | STRING IN JAVA

Difference between "== operator" and "equals() method" in java.

4:36
DIFFERENCE BETWEEN "equals() method" and "== operator" IN JAVA | STRING IN JAVA

18,479 views

6 years ago

Will Tollefson
The equals hashCode Contract - Java Programming

In this video, we'll talk all about the contract for the equals() and hashCode() methods in Java. Its surpringly easy to forget some of ...

22:31
The equals hashCode Contract - Java Programming

2,275 views

2 years ago

CS Hero
Java Tutorial: The Equals Method

This video covers how to use the == operator to compare reference and how to override and use the equals method to compare ...

12:24
Java Tutorial: The Equals Method

546 views

4 years ago

The Curious Coder
equals() vs hashCode() in Java | Internal Working & Real Use Cases

Confused between == and equals() in Java? Wondering what hashCode() does, or why you must override both equals() and ...

27:58
equals() vs hashCode() in Java | Internal Working & Real Use Cases

1,483 views

2 months ago

Bill Barnum
Checking Equality in Java ( == vs equals method )

This Java tutorial for beginners explains different ways to check if two variables are equal including ==, the equals() method, and ...

12:32
Checking Equality in Java ( == vs equals method )

9,217 views

5 years ago

Ankit Wasankar
02. Equals and HashCode Contract & Different Variations

This video includes: - What is default implementation of equals() and hashCode() method. - What is equals() and hashCode() ...

11:19
02. Equals and HashCode Contract & Different Variations

82,689 views

5 years ago

Programando en JAVA
== VS .equals JAVA

VS .equals JAVA.

0:48
== VS .equals JAVA

2,117 views

2 months ago

SPS Tech | Learn Java | Crack Interviews
Developers, remember this contract between equals and hashcode in Java #javainterviewquestion #java

... of the same class A and B and their hash code is same does this mean that when I will run the equals check a DOT equals B will ...

1:00
Developers, remember this contract between equals and hashcode in Java #javainterviewquestion #java

5,818 views

2 years ago

Coding Env
Why is it important to override the hashCode and equals method of Object class in Java?

Why it is important to override the hashCode and equals method in Java. What is hashCode and equals method. What is its ...

5:57
Why is it important to override the hashCode and equals method of Object class in Java?

7,679 views

3 years ago

Chris Kauffman
Java: Creating equals(Object) methods

Describes how to override the equals(Object) method inherited from big daddy Object so that deep equality behaves as expected.

9:50
Java: Creating equals(Object) methods

6,852 views

10 years ago

slidenerd
Java String Comparison == vs .equals() |

Launch Your First Android app with our TOP course at 82% OFF (24 hrs ONLY) HERE https://goo.gl/7veBXc "Learn How To ...

5:34
Java String Comparison == vs .equals() |

20,817 views

12 years ago

Caleb Curry
Hands-on Java - Override hashCode and equals - Day 20

Start your software dev career - https://calcur.tech/dev-fundamentals FREE Courses (100+ hours) ...

17:03
Hands-on Java - Override hashCode and equals - Day 20

4,808 views

5 years ago

Java4QuickLearning
Difference between equals and equalsIgnoreCase method of String in java #java4quicklearning

Difference between equals and equalsIgnoreCase method of String in java #java4quicklearning #corejavainterviewquestions ...

0:32
Difference between equals and equalsIgnoreCase method of String in java #java4quicklearning

1,770 views

1 year ago

Code Decode
Equals and Hashcode Contract in Java [Important Java Interview Question] | Code Decode

In this video of code decode we have covered Equals and hashcode contract || Equals and hashcode in Java Udemy Course of ...

13:01
Equals and Hashcode Contract in Java [Important Java Interview Question] | Code Decode

199,634 views

5 years ago