Question d’entretien chez BT Group

public class Test { public static void main(String[] args) { Test test=new Test(); } void call() throws FileNotFoundException{ } How many ways Child class of test Class can override call method?

Réponse à la question d'entretien

Utilisateur anonyme

10 déc. 2016

void call() throws FileNotFoundException,RuntimeException{ } void call(){ }

1