- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
How to use the instanceof operator in Java?
The instanceof operator is used only for object reference variables. The operator checks whether the object is of a particular type (class type or interface type).
Example
public class Test { public static void main(String args[]) { String name = "James"; boolean result = name instanceof String; System.out.println(result); } }
Output
true
- Related Articles
- Java instanceof operator
- instanceof operator in Java
- instanceof operator vs isInstance method in java
- What is instanceof operator in Java? Explain.
- Instanceof operator in JavaScript
- instanceof Keyword in Java
- How to use the "in" operator in JavaScript?
- What is the type conversion operator ( ) in Java and how to use it?
- How to use the ?: conditional operator in C#?
- How to use the slicing operator in Python?
- Java instanceof and its applications
- Java Program to use == operator to compare enums
- How to check "instanceof" class in Kotlin?
- How to use ‘as’ operator in C#?
- How to use ‘is’ operator in C#?

Advertisements