

- 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
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 Questions & Answers
- Java instanceof operator
- instanceof operator in Java
- Instanceof operator in JavaScript
- instanceof operator vs isInstance method in java
- What is instanceof operator in Java? Explain.
- instanceof Keyword in Java
- How to use the ?: conditional operator in C#?
- Java instanceof and its applications
- What is the type conversion operator ( ) in Java and how to use it?
- Java Program to use == operator to compare enums
- How to use Operator Overloading in C#?
- How to use the "in" operator in JavaScript?
- How to use Null Coalescing Operator (??) in C#?
- How to use an assignment operator in C#?
- How to use *= operator in jQuery attribute selector?
Advertisements