- 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
Java Program to check if a particular key exists in TreeMap
To check if a particular key exists in TreeMap, use the containsKey() method.
Create a TreeMap first and add some elements −
TreeMap<Integer,String> m = new TreeMap<Integer,String>(); m.put(1,"PHP"); m.put(2,"jQuery"); m.put(3,"JavaScript"); m.put(4,"Ruby"); m.put(5,"Java"); m.put(6,"AngularJS"); m.put(7,"ExpressJS");
Now, let’s say we need to check that key 5 exists or not. For that, set the containsKey() method like this −
m.containsKey(5)
The following is an example to check if a particular key exists in TreeMap −
Example
import java.util.*; public class Demo { public static void main(String args[]) { TreeMap<Integer,String> m = new TreeMap<Integer,String>(); m.put(1,"PHP"); m.put(2,"jQuery"); m.put(3,"JavaScript"); m.put(4,"Ruby"); m.put(5,"Java"); m.put(6,"AngularJS"); m.put(7,"ExpressJS"); System.out.println("TreeMap Elements...
"+m); System.out.println("Does key 5 exist in the TreeMap = "+m.containsKey(5)); } }
Output
TreeMap Elements... {1=PHP, 2=jQuery, 3=JavaScript, 4=Ruby, 5=Java, 6=AngularJS, 7=ExpressJS} Does key 5 exist in the TreeMap = true
- Related Articles
- Java Program to check if a particular value exists in TreeMap
- Check if a particular key exists in Java LinkedHashMap
- Java Program to check if a particular element exists in HashSet
- Check if a particular value exists in Java LinkedHashMap
- Check if a particular value exists in Java TreeSet
- Check if a particular element exists in Java LinkedHashSet
- Check if a given key exists in Java HashMap
- Java Program to get highest key stored in TreeMap
- How to check if a key exists in a Python dictionary?
- How to check if a key exists in a map in Golang?
- Java Program to check if a given value exists in a HashMap
- How to Check if a Key Exists in the Hashtable in C#?
- Remove a key from TreeMap in Java
- How to check if a given key already exists in a Python dictionary?
- Java Program to remove a key from a TreeMap only if it is associated with a given value

Advertisements