Let's say, I have an array of complex data type objects. For example: FullName[100]
. Each FullName
object has has 2 class member variables: String FirstName
and String LastName
. Now, from this array of FullName
objects, I want to retrieve an array of String FirstNames[]
.
How can I do this without the extensive for loop application?