instance of class java code example
Example 1: instanceof java
class Example{
public static void main(String args[]){
Example anexample=new Example();
System.out.println(anexample instanceof Example);
}
}
Example 2: create instance object java
myCar = new Car();