Java list remove after index

Java.util.ArrayList.remove[] Method

Advertisements

Previous Page
Next Page

Description

The java.util.ArrayList.remove[int index] method removes the element at the specified position in this list. Shifts any subsequent elements to the left [subtracts one from their indices].

Declaration

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

public E remove[int index]

Parameters

index The index of the element to be removed .

Return Value

This method returns the element that was removed from the list .

Exception

IndexOutOfBoundsException if the index is out of range.

Example

The following example shows the usage of java.util.ArrayList.remove[index] 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 deque arrlist.add[20]; arrlist.add[15]; arrlist.add[30]; arrlist.add[45]; System.out.println["Size of list: " + arrlist.size[]]; // let us print all the elements available in list for [Integer number : arrlist] { System.out.println["Number = " + number]; } // Removes element at 3rd position arrlist.remove[2]; System.out.println["Now, Size of list: " + arrlist.size[]]; // 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

Size of list: 4 Number = 20 Number = 15 Number = 30 Number = 45 Now, Size of list: 3 Number = 20 Number = 15 Number = 45
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ủ Đề