- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Remove all elements from Java NavigableMap
Use the clear() method to remove all elements from NavigableMap in Java.
First, let us create NavigableMap −
NavigableMap<Integer, String> n = new TreeMap<Integer, String>();
Add elements to the NavigableMap −
n.put(5, "Tom"); n.put(9, "John"); n.put(14, "Jamie"); n.put(1, "Tim"); n.put(4, "Jackie"); n.put(15, "Kurt"); n.put(19, "Tiger"); n.put(24, "Jacob");
Remove all elements −
n.clear();
The following is an example to remove all elements from Java NavigableMap −
Example
import java.util.*; public class Demo { public static void main(String[] args) { NavigableMap<Integer, String> n = new TreeMap<Integer, String>(); n.put(5, "Tom"); n.put(9, "John"); n.put(14, "Jamie"); n.put(1, "Tim"); n.put(4, "Jackie"); n.put(15, "Kurt"); n.put(19, "Tiger"); n.put(24, "Jacob"); System.out.println("NavigableMap elements...
"+n); System.out.println("Size = "+n.size()); // remove all elements n.clear(); System.out.println("
Updated NavigableMap elements = "+n); System.out.println("Size = "+n.size()); } }
Output
NavigableMap elements... {1=Tim, 4=Jackie, 5=Tom, 9=John, 14=Jamie, 15=Kurt, 19=Tiger, 24=Jacob} Size = 8 Updated NavigableMap elements = {} Size = 0
- Related Articles
- Remove all elements from Java LinkedHashSet
- Remove all elements from TreeSet in Java
- Remove all elements from a HashSet in Java
- Remove all elements from the ArrayList in Java
- Java Program to remove all elements from a set in Java
- Remove all elements in Java IdentityHashMap
- Remove all elements from OrderedDictionary in C#
- Remove all values from Java LinkedHashMap
- Remove all elements from a HashSet in C#
- Remove all elements from a SortedList in C#
- Remove all elements from the ArrayList in C#
- Remove all elements from the SortedSet in C#
- Remove all elements from the Collection in C#
- Remove all elements from the Hashtable in C#
- Create NavigableMap from TreeMap in Java

Advertisements