Archives for: "January 2015, 01"
Foreach in Java
I used foreach keyword in C#. I used it to travel element one by one in a list. In Java, there is not such keyword calls foreach. But you can use for to do that:
E.g.Codeforeach(Tag tag : tags){ tag.getName();} more »