package com.concretepage;
public class SubClassParentConstructorProtected {
public static void main(String[] args) {
SubClassParentConstructorProtected sub = new SubClassParentConstructorProtected();
ParentConstructorProtected pub = new ParentConstructorProtected();
}
}
public class SubClassParentConstructorProtected {
public static void main(String[] args) {
SubClassParentConstructorProtected sub = new SubClassParentConstructorProtected();
ParentConstructorProtected pub = new ParentConstructorProtected();
}
}
No comments:
Post a Comment