raja


{ City } mumbai
< Country > india
* Profession * sr. developer
User No # 42813
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 0
Questions / { raja }
Questions Answers Category Views Company eMail




Answers / { raja }

Question { iGate, 5090 }

how to search the pertical objects in a Collections


Answer

We can search by contains(Object) method of collection
class. like
Arraylist list = new ArrayList();
list.add("a");
list.add("b");
if(list.contains("a")
{
--
--
}

Is This Answer Correct ?    2 Yes 0 No