Quantcast
Channel: Difference between double and Double in comparison - Stack Overflow
Viewing all articles
Browse latest Browse all 6

Answer by malvern dongeni for Difference between double and Double in comparison

$
0
0

Difference between == and equals

using == on primitive data types is not the same as using it on object reference data types.

  1. On primitive data types == is used as equals.
  2. for object reference data types == refers to their references. Thuswhat the object points to in memory.

Consider case 1

    double d1 = 10.00;    double d2 =10.00;    System.out.println(d1 == d2); 

*output is * true

enter image description here

case 2: == reference data types

    Double d1 = 10.00;    Double d2 =10.00;    System.out.println(d1 == d2);

*output is * false

enter image description here

d1 and d2 have different memory references.

to check the validity of this consider the following code

    Double d1 = 10.00;    Double d2 = d1;    System.out.println(d1 == d2);

This will print true since d1 and d2 point to the same memory reference.

Therefore

Java uses == to compare primitives and for checking if two variables refer to the same object

`equals'

is used for checking if two objects are equivalent.

it also depends on the implementation of the object it is being called on. For Strings, equals() checks the characters inside of it.

    Double d1 = 10.00;    Double d2 = 10.00;    System.out.println(d1.equals(d2));

prints true since it looks what's inside the d1 and d2.

case 1 will not compile

enter image description here


Viewing all articles
Browse latest Browse all 6

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>