

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What does the method size() do in java?
The size() method of the class java.util.ArrayList returns the number of elements in this list i.e. the size of the list.
Example
import java.util.ArrayList; public class ArrayListDemo { public static void main(String[] args) { ArrayList<Integer> arrlist = new ArrayList<Integer>(5); arrlist.add(15); arrlist.add(20); arrlist.add(25); arrlist.add(22); for (Integer number : arrlist) { System.out.println("Number = " + number); } int retval = arrlist.size(); System.out.println("Size of list = " + retval); } }
Output
Number = 15 Number = 20 Number = 25 Number = 22 Size of list = 4
- Related Questions & Answers
- What does the method trimToSize() do in java?
- What does the method getFirst() do in java?
- What does the method getLast() do in java?
- What does the method removeFirst() do in java?
- What does the method removeLast() do in java?
- What does the method firstElement() do in java?
- What does the method lastElement() do in java?
- What does the method removeAllElements() do in java?
- What does the method isEmpty() do in java?
- What does the method elements() do in java?
- What does the method toArray() do in java?
- What does the method pop() do in java?
- What does the method peek() do in java?
- What does the method empty() do in java?
- What does the method clear() do in java?
Advertisements