Answer to Question #20029 in Java | JSP | JSF for nohra

Question #20029
Where is the error (although this code will compile and run) in this code sequence?
int a[ ] = { 3, 26, 48, 5 };
int b[ ] = { 3, 26, 48, 5 };
if ( a != b )
System.out.println( "Array elements are NOT identical" );
1
Expert's answer
2012-12-05T10:30:33-0500

You must write next solution:

int a[ ] = { 3, 26, 48, 5 };
int b[ ] = { 3, 26, 48, 5 };
if (!Arrays.equals(a, b) ){
System.out.println( "Array elements are NOT
identical" );
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS