Home | History | Annotate | Download | only in src
      1 /*
      2  * Copyright (C) 2007 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 /**
     18  * Test instanceof
     19  */
     20 public class Main {
     21     public static void main(String args[]) {
     22         Iface1 face1;
     23         ImplA aa = new ImplA();
     24         ImplBSub bb = new ImplBSub();
     25         boolean aaOkay, bbOkay;
     26 
     27         face1 = aa;
     28         face1 = bb;
     29 
     30         System.out.println("iface1.mFloaty = " + face1.mFloaty + " " + face1.mWahoo);
     31         System.out.println("aa.mFloaty = " + aa.mFloaty + " " + aa.mWahoo);
     32         System.out.println("bb.mWhoami = " + bb.mWhoami);
     33 
     34         aaOkay = face1 instanceof ImplA;
     35         System.out.print("aaOkay (false) = ");
     36         System.out.println(aaOkay);
     37         bbOkay = face1 instanceof ImplB;
     38         System.out.print("bbOkay (true) = ");
     39         System.out.println(bbOkay);
     40 
     41         bb = (ImplBSub) face1;
     42         try {
     43             aa = (ImplA) face1;
     44         }
     45         catch (ClassCastException cce) {
     46             System.out.println("Caught a ClassCastException (expected)");
     47         }
     48     }
     49 }
     50