Tuesday, March 17, 2015

check if two arrays are equal or not in java pgm



To check if two arrays are equal or not
 
import java.util.Arrays;
 public class Main
 {
   public static void main(String[] args) throws Exception
 {
      int[] ary = {1,2,3,4,5,6};
      int[] ary1 = {1,2,3,4,5,6};
      int[] ary2 = {1,2,3,4};
      System.out.println("Is array 1 equal to array 2?? "
      +Arrays.equals(ary, ary1));
      System.out.println("Is array 1 equal to array 3?? "
      +Arrays.equals(ary, ary2));
   }
}

Result:

Is array 1 equal to array 2?? true
Is array 1 equal to array 3?? false

No comments:

Post a Comment