| CastsExamples.java |
package lectures.inheritance.extra;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/InheritanceExtra.pptx", "Lectures/InheritanceExtra.pdf", "Videos/InheritanceExtra.avi"})
public class CastsExamples {
public static void main (String[] anArgs) {
// int i = (int) true;
// Integer anInteger = (Integer) true;
}
}