Click here to Skip to main content
Licence CPOL
First Posted 1 Nov 2001
Views 63,821
Bookmarked 10 times

Sorting the Objects in Java

By | 1 Nov 2001 | Article
This simple program helps the user to sort objects.

Introduction

The following program helps the programmer to sort objects. This is mainly for beginners. I have used some collections classes to sort objects.

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[i]=new Integer(ints[i]); 
      } 
      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[i]); 
                 List list = Collections.synchronizedList(al); 
                 Collections.sort(list); 
                 return list; 
   } 
}

History

  • 1st November, 2001: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Koundinya

Web Developer

India India

Member

Hi
I am from South India (Hyderabad). Basically I am lover of mathematics which made me to enter computer field. I started learning computer sciences with language B.B.C Basic.
Later I changed my track to C, C++ and Java.
 


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralJava Array sorting Pinmembermsohan014:48 11 Nov '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 2 Nov 2001
Article Copyright 2001 by Koundinya
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid