{}
run-icon
Main.java
// Online Java Compiler // Use this editor to write, compile and run your Java code online class HelloWorld { public static void main(String[] args) { int[] array1 = {1, 2}; int[] array2 = {1, 2}; System.out.println(array1 == array2); } }
Output