Page 104 - 6253
P. 104
// Повернення об'єкту
Object getob() {
return obj;
}
// Відображенняти типу об'єкту
void showType() {
System.out.println("Типом obj є " + obj.getClass().getName());
}
}
public class Main {
public static void main (String args[]) {
// Створення об'єкту класу NonGeneric
NonGeneric intOb = new NonGeneric(10);
intOb.showType();
System.out.println("Значення intOb: " + (Integer)
intOb.getob());
// Створення об'єкту класу NonGeneric
NonGeneric strOb = new NonGeneric("Текст");
strOb.showType();
System.out.println("Значення strOb: " + (String)
strOb.getob());
// Цей код компілюється, але концептуально невірний
intOb = strOb;
103