Saturday 25 October 2014

Java : Collection Framework : LinkedList (Remove Group of Objects)


Click here to watch in Youtube : https://www.youtube.com/watch?v=zH3gWkKRYv8

LinkedListRemoveAllExample.java
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

/*
 * Example of removeAll(Collection<?> c) method
 */
public class LinkedListRemoveAllExample
{

    public static void main(String[] args)
    {
        LinkedList<String> linkedList = new LinkedList<String>();
        linkedList.add("Ram");
        linkedList.add("Dave");
        linkedList.add("Peter");
        linkedList.add("Julia");
        linkedList.add("Akram");

        System.out.println("linkedList : " + linkedList + "\n");

        List<String> removeList = new ArrayList<String>();
        removeList.add("Dave");
        removeList.add("Peter");

        System.out.println("RemoveList : " + removeList + "\n");

        /*
         * Remove group of elements from the linkedList
         */

        linkedList.removeAll(removeList);

        System.out
                .println("linkedList After removing elements which are present in the removeList : "
                        + linkedList + "\n");

    }

}

Output
linkedList : [Ram, Dave, Peter, Julia, Akram]

RemoveList : [Dave, Peter]

linkedList After removing elements which are present in the removeList : [Ram, Julia, Akram]


To Download LinkedListDemoRemoveAll Project Click the below link

https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoRemoveAll.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • 1 comment:

    1. Earn from Ur Website or Blog thr PayOffers.in!

      Hello,

      Nice to e-meet you. A very warm greetings from PayOffers Publisher Team.

      I am Sanaya Publisher Development Manager @ PayOffers Publisher Team.

      I would like to introduce you and invite you to our platform, PayOffers.in which is one of the fastest growing Indian Publisher Network.

      If you're looking for an excellent way to convert your Website / Blog visitors into revenue-generating customers, join the PayOffers.in Publisher Network today!


      Why to join in PayOffers.in Indian Publisher Network?

      * Highest payout Indian Lead, Sale, CPA, CPS, CPI Offers.
      * Only Publisher Network pays Weekly to Publishers.
      * Weekly payments trough Direct Bank Deposit,Paypal.com & Checks.
      * Referral payouts.
      * Best chance to make extra money from your website.

      Join PayOffers.in and earn extra money from your Website / Blog

      http://www.payoffers.in/affiliate_regi.aspx

      If you have any questions in your mind please let us know and you can connect us on the mentioned email ID info@payoffers.in

      I?m looking forward to helping you generate record-breaking profits!

      Thanks for your time, hope to hear from you soon,
      The team at PayOffers.in

      ReplyDelete