Skip to main content

Post 4: Core Java : How To Loop ArrayList


How To Loop ArrayList In Java

In this tutorial we will see How To Loop ArrayList In Java in different ways. Below example will loop through ArrayList and print its content.
  1. Using regular for loop
  2. Using advance for loop
  3. Using While Loop
  4. Using Iterator
Iterator is an interface in the collection framework. ArrayList is a collection class and implements the List Inteface. All the elements of the ArrayList can be traversed by the Iterator. Iterator has methods hasNext() and next()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.test;
 
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
 
public class ArrayListDemo {
 
 public static void main(String[] args) {
 
  // adding items to list
  // in real time you might get this data from a db or from other sources
  // We are hard-coding the values here to simplify this example
  List list = new ArrayList();
  list.add(new NewsObject(1001,
    "Soldier beheaded in suspected terror attack in London",
    "en_in"));
  list.add(new NewsObject(1002,
    "Passive smoking can make kids aggressive", "en_in"));
  list.add(new NewsObject(
    1003,
    "Police prepare to question BCCI chief's son-in-law for betting links",
    "en_in"));
  list.add(new NewsObject(1004,
    "Shun body tattoos if you wish to join armed forces", "en_in"));
  list.add(new NewsObject(1005,
    "Man linked to Boston bombings killed by FBI agent", "en_in"));
 
  System.out.println("#1. Looping using regular for loop");
  for (int i = 0; i < list.size(); i++) {
   NewsObject news = (NewsObject) list.get(i);
   System.out.println(news);
  }
 
  System.out.println("#2.  Looping using advance for loop");
  for (NewsObject news : list) {
   System.out.println(news);
  }
 
  System.out.println("#3. Looping using while loop");
  int j = 0; // initilisation
  while (list.size() > j) { // condition checking
   NewsObject news = (NewsObject) list.get(j);
   System.out.println(news);
   j++; // iteration
  }
 
  System.out.println("#4. Looping using iterator");
  Iterator iterator = (Iterator) list.iterator();
  while (iterator.hasNext()) {
   NewsObject news = (NewsObject) iterator.next();
   System.out.println(news);
  }
 }
 
}
Here in my above example, I am storing NewsObject object in my ArrayList.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
public class NewsObject {
 int id;
 String headline;
 String edition;
 
 NewsObject(int id, String headline, String edition) {
  this.id = id;
  this.headline = headline;
  this.edition = edition;
 
 }
 
 public int getId() {
  return id;
 }
 
 public void setId(int id) {
  this.id = id;
 }
 
 public String getHeadline() {
  return headline;
 }
 
 public void setHeadline(String headline) {
  this.headline = headline;
 }
 
 public String getEdition() {
  return edition;
 }
 
 public void setEdition(String edition) {
  this.edition = edition;
 }
 
 @Override
 public String toString() {
  return "NewsObject : " + "Id = " + id + ", Headline=" + headline
    + ", Editon=" + edition;
 }
 
}

Comments

Popular posts from this blog

TIME TABLE: VTU BE/B.Tech June/July 2016 Exam Time table Draft Layout

Semester-wise June-July 2016 Exam time table (Draft Layout) Are You Using updated Kwikstudy App?

Walkins Bangalore: 01st-Oct-2016

1. UTC Aerospace : GET – S&IS-Software Team hiring Electronics & CSE / IT Freshers ! Walkin on 1st OCT | BE/BTECH - 2015 & 2016 both batch can try Selection Process : Written Test Group Discussion Technical & HR Interviews How To Apply : It is a walk-in drive for 2016 batch eligible freshers on 1 Oct 2016 at Bangalore location. Interested and eligible candidates can walk-in to the following venue on 1 Oct 2016 Date of Drive : 01 Oct 2016 Reporting Time : 8:00 AM to 11:30 AM Venue : UTC Aerospace Systems – Site 1, Sy. Nos. 14/1 & 15/1, Maruthi Industrial State, Phase 2, Hoody Village, Whitefield Road, K R Puram Hobli, Bangalore – 560048 ______________________________________ 2. HP : Software Eng/ Software Tester (Call based ,less chance of getting entry , try at your own risk) Event Date : 1-October-2016 Event Time : 8 : 00 am Job Location : Bangalore / Chennai Job Description: Software Engineer /

How to get VTU Provisional Degree Certificate (PDC) ?

Here is the procedure to get the Provisional Degree Certificate from the VTU by passed out candidates. You can get the certificate through post by sending the required documents to VTU. Documents and things required: 1. Provisional Degree Certificate (PDC) application form 2. DD of specified fees amount or print copy of receipt if you paid the fees online 3. A letter to the VTU registrar 4. A4 size envelope Step 1: Fill the PDC application You can download the PDC application form from the VTU website. Click below link for application download. PDC application form download     After downloading the application take a print of it and properly fill the form. Step 2: Make a DD of specified amount as the fees of PDC: Go to the bank and make the DD of prescribed fee amount for the PDC. The fee amount is specified in the above link from where you downloaded the application. Make the DD in favor of " Finance Officer, VTU Belgaum ".   Wr