Kde je chyba.. ? :(
Line 9,10 a 39 píše vykřičníky... Je to příklad přímo z učebnice :(
package app;
public class Main {
public static void main(String[] args) {
Student St = new Student();
VelkyStudent ps = new VelkyStudent();
St.Info();
ps.Info();
}
abstract class Clovek {
protected String Jmeno;
Clovek(){Jmeno = "Franta";}
abstract void Info();
}
class Student extends Clovek{
protected int IDS;
Student(){IDS=123;}
void Info()
{
System.out.println(IDS);
}
}
class VelkyStudent extends Clovek{
void Info()
{
System.out.println("Jsem student se jmenem " +Jmeno);
System.out.println("A ID: " +IDS);
}
}
}