View Single Post
  #14 (permalink)  
Old 05-05-2008, 06:31 AM
Eranga's Avatar
Eranga Eranga is offline
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,338
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
In simple way you can do this pal.

Code:
EmployeeClass[] collection = new EmployeeClass[] {new EmployeeClass(), new EmployeeClass(), new EmployeeClass()}; for(int i = 0; i < collection.length; i ++) { collection[i].getdata(); } for(int j = 0; j < collection.length; j++) { collection[j].display(); }
What is displayTotal() do. I can't see anything about it.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote