You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

B.java 388B

123456789101112
  1. public class B extends A {
  2. public static void main(String[] args) {
  3. B b = new B();
  4. if (b.getClass().getInterfaces().length>0) {
  5. throw new RuntimeException("B should not implement any interfaces: "+b.getClass().getInterfaces()[0].toString());
  6. }
  7. if (!(b instanceof java.io.Serializable)) {
  8. throw new RuntimeException("B should be serializable! Inherited from A");
  9. }
  10. }
  11. }