How to check value and its position are same in 2 array list wi?.
Example:
//These should be not equal.
ArrayList<String> listA = {"a", "b", "c"}
ArrayList<String> listB = {"b", "c", "a"}
In this example element are not same position in both array list so return false..
How to check same value in same position without using for loop
I want to expected result this if.
//These should be equal.
ArrayList<String> listA = {"a", "b", "c"}
ArrayList<String> listB = {"a", "b", "c"}
this type array list then return true because the value and position are same in both array..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…