Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Reg: Collections

  1. #1
    Junior Member
    Join Date
    Jul 2011
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Reg: Collections

    Hai Everyone

    Good Morning
    First thing first. I am new to this Forum.
    So my regards to you all.

    I am new to JAVA. I am working on Collections.
    I have used the following code using LINKED LIST:
    	public class ListGame {
     
    		//public LinkedList<Object> llist = new LinkedList();
    		public LinkedList<String> llist = new LinkedList();
    		public LinkedList linklst = new LinkedList();
     
    		public static void main(String[] arg)
    		{
    			ListGame sample = new ListGame();
    			sample.llist.add("Saiarm"); 
    			sample.llist.add(new String("10"));
     
    			//Collection T = new Collection<E extends String>;
    			//sample.llist.addAll
     
    			System.out.println("List Contains "+sample.llist);
     
    		        Collections.sort(sample.llist);
    			System.out.println("List After Sorting "+sample.llist);
                   }


    Here I used the Collections.sort function.
    So I was stuck with this particular class called Collections.
    So what is the relation ship between Collection class and Linked List.

    And I would be happy to learn about coding conventions (like naming convent of variables,functions etc as per industry standards).
    Please help me in learning them.

    Thank you
    Have a nice day

    With regards
    Mani


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Reg: Collections

    For collections, I recommend the following reading:
    Trail: Collections (The Java™ Tutorials)
    and the following for code conventions
    Code Conventions for the Java Programming Language
    Last but not least, for future reference I recommend using the code tags.

Similar Threads

  1. Collections
    By pokuri in forum Collections and Generics
    Replies: 4
    Last Post: June 3rd, 2011, 09:08 AM
  2. collections
    By bardd in forum Java Theory & Questions
    Replies: 1
    Last Post: March 21st, 2011, 09:31 AM
  3. Error in collections
    By pokuri in forum Collections and Generics
    Replies: 3
    Last Post: January 28th, 2011, 01:01 PM
  4. Help me to Choose Collections
    By kathir0301 in forum Collections and Generics
    Replies: 1
    Last Post: December 3rd, 2010, 10:14 AM