Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,933 questions

51,870 answers

573 users

How to compare two int arrays in Java

2 Answers

0 votes
import java.util.Arrays;
 
public class JavaApplication {
 
    public static void main(String[] args) {
 
        int[] intArr1 = new int[]{12, 9, 187, 89918, 100};
        int[] intArr2 = new int[]{12, 9, 187, 89918, 100};
    
        boolean b = Arrays.equals(intArr1, intArr2);
        
        System.out.println(b);
  }
}


   
/*
run:
 
true
 
*/

 



answered Sep 23, 2016 by avibootz
edited May 14, 2024 by avibootz
0 votes
import java.util.Arrays;
 
public class MyClass {
    public static void main(String args[]) {
        int arr1[] = {1, 2, 3, 7, 8}; 
        int arr2[] = {1, 2, 3, 7, 8};    
 
        if (Arrays.equals(arr1, arr2))
            System.out.println("Equal"); 
        else
            System.out.println("Not equal"); 
    }
}
 
 
 
 
/*
run:
 
Equal
 
*/

 



answered May 14, 2024 by avibootz

Related questions

1 answer 194 views
194 views asked Sep 24, 2016 by avibootz
1 answer 190 views
190 views asked Sep 23, 2016 by avibootz
1 answer 169 views
169 views asked Sep 23, 2016 by avibootz
1 answer 165 views
165 views asked Sep 23, 2016 by avibootz
1 answer 170 views
170 views asked Sep 23, 2016 by avibootz
1 answer 165 views
165 views asked Sep 23, 2016 by avibootz
2 answers 267 views
...