I find the following code
import java.awt.*;
class q99{
public static void main(
String args[]){
try{
Button[] var = null;
System.out.println(
var instanceof Component[]);
}catch(Exception e){
System.out.println(
"Exception Thrown"
;
}//end catch
}//end main()
}//end class definition
Where can I find the document or specification about it
Thanks!
import java.awt.*;
class q99{
public static void main(
String args[]){
try{
Button[] var = null;
System.out.println(
var instanceof Component[]);
}catch(Exception e){
System.out.println(
"Exception Thrown"
}//end catch
}//end main()
}//end class definition
Where can I find the document or specification about it
Thanks!