Compare a vlaue from an array with another value from arraylist
in
Programming Questions
•
2 years ago
Hi ,
I have an array and and an arraylist , and i want to compare two values from the both , how should i do it??
For example
I have an array and and an arraylist , and i want to compare two values from the both , how should i do it??
For example
- void collectscenes ()
{
for( int i = 0 ; i < listTableRecords.size(); i++)
{
if( uniqueScenes[i].equals(listTableRecords[i].getScene()))
{
println("Ok");
}
}
}
1