ArrayList method Java

Java.util.ArrayList.add[] Method

Advertisements

Previous Page
Next Page

Description

The java.util.ArrayList.add[int index, E elemen] method inserts the specified element E at the specified position in this list.It shifts the element currently at that position [if any] and any subsequent elements to the right [will add one to their indices].

Declaration

Following is the declaration for java.util.ArrayList.add[] method

public void add[int index, E element]

Parameters

  • index The index at which the specified element is to be inserted.

  • element The element to be inserted.

Return Value

This method does not return any value.

Exception

IndexOutOfBoundsException if the index is out of range.

Example

The following example shows the usage of java.util.ArrayList.add[index,E] method.

Live Demo
package com.tutorialspoint; import java.util.ArrayList; public class ArrayListDemo { public static void main[String[] args] { // create an empty array list with an initial capacity ArrayList arrlist = new ArrayList[5]; // use add[] method to add elements in the list arrlist.add[15]; arrlist.add[22]; arrlist.add[30]; arrlist.add[40]; // adding element 25 at third position arrlist.add[2,25]; // let us print all the elements available in list for [Integer number : arrlist] { System.out.println["Number = " + number]; } } }

Let us compile and run the above program, this will produce the following result

Number = 15 Number = 22 Number = 25 Number = 30 Number = 40
java_util_arraylist.htm
Page Not Found
×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Tutorix
Login
Categories
    • Academic Tutorials
    • Big Data & Analytics
    • Computer Programming
    • Computer Science
    • Databases
    • DevOps
    • Digital Marketing
    • Engineering Tutorials
    • Exams Syllabus
    • Famous Monuments
    • GATE Exams Tutorials
    • Latest Technologies
    • Machine Learning
    • Mainframe Development
    • Management Tutorials
    • Mathematics Tutorials
    • Microsoft Technologies
    • Misc tutorials
    • Mobile Development
    • Java Technologies
    • Python Technologies
    • SAP Tutorials
    • Programming Scripts
    • Selected Reading
    • Software Quality
    • Soft Skills
    • Telecom Tutorials
    • UPSC IAS Exams
    • Web Development
    • Sports Tutorials
    • XML Technologies
    • Multi-Language
    • Interview Questions
Q/A
Library
eBooks
Courses

404 - Page Not Found

404

We're sorry, but the page you were looking for doesn't exist.

Here are some useful links

  • Tutorials Library
  • Videos
  • Q/A
  • Coding Ground
  • Dev Tools
  • Contact Us
  • FAQ's


Extras

Mobile First

About us

  • Company
  • Our Team
  • Careers
  • Privacy Policy
  • Cookies Policy
  • Terms of use
  • Investors

Extra Links

  • Articles
  • Dev Tools
  • Free Graphics
  • File Conversion
  • Shared Tutorials
  • NetMeeting
  • Whiteboard

Contact Us

  • Address: 4th Floor, Incor9 Building, Kavuri Telangana 500081

  • Email: Click Here

  • Website: www.tutorialspoint.com

  • Facebook
  • Google+
  • Twitter
  • Linkedin
  • YouTube
  • Privacy Policy
  • Cookies Policy
  • Contact

© Copyright 2021. All Rights Reserved.

go

Video liên quan

Chủ Đề