INTELLIGENT WORK FORUMS FOR COMPUTER PROFESSIONALS
Come Join Us!
Are you a Computer / IT professional? Join Tek-Tips now!
- Talk With Other Members
- Be Notified Of Responses
To Your Posts
- Keyword Search
- One-Click Access To Your
Favorite Forums
- Automated Signatures
On Your Posts
- Best Of All, It's Free!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Partner With Us!
"Best Of Breed" Forums Add Stickiness To Your Site

(Download This Button Today!)
Feedback
"...Just wanted to let you know that I registered today, and your site is fantastic. I found solutions to problems that I have been encountering for months!..."
Geography
Where in the world do Tek-Tips members come from?
|
Collection Classes
|
Sorting the Objects
Posted: 14 Aug 01
|
public class SortObjects { public static void main(String s[]) { Collections col; List l=sort(s); System.out.println("\nStrings sorted List ..."); for(int i=0;i<s.length;i++) { System.out.println((String)l.get(i)); } int ints[]={11,2,-22,401,6}; Integer in[]=new Integer[ints.length]; for(int i=0;i<in.length;i++) { in=new Integer(ints); } l=sort(in); System.out.println("\nIntegers sorted List ..."); for(int i=0;i<in.length;i++) { System.out.println((Integer)l.get(i)); } } public static List sort(Object o[]) { ArrayList al=new ArrayList(); for(int i=0;i<o.length;i++) al.add(i,o); List list = Collections.synchronizedList(al); Collections.sort(list); return list; } }
The above program will help the user to sort objects .
|
Back to Java FAQ Index
Back to Java Forum |
|
 |
|
Join Tek-Tips® Today!
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Talk To Other Members
- Notification Of Responses To Questions
- Favorite Forums One Click Access
- Keyword Search Of All Posts, And More...
Register now while it's still free!
Already a member? Close this window and log in.
Join Us Close