Home > Java > Comparing Arrays in Java

Comparing Arrays in Java

When comparing to array == operator won’t do the job. Because using == operator only compares the objects whether they are the same object or not. That means operator won’t check the objects data.

for example
byte[] a = “Test”.getBytes();
byte[] b = “Test”.getBytes();

(a == b) –> false
Arrays.equals(a,b) –> true

Categories: Java Tags: ,
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment