Come il compilatore ti stà dicendo chiaramente, il problema non è nell'invocazione del metodo, ma nella costruzione dell'oggetto.
Tu lo costruisci utilizzando il costruttore vuoto, che, evidentemente, non esiste nella classe DistributoreDB.
I messaggi del compilatore sono chiarissimi. Se ti dice
significa che il problema stà nel costruttore, non in un altro metodo.GestioneCd.java:84: cannot find symbol
symbol : constructor DistributoreDB()
location: class DistributoreDB
DistributoreDB mt= new DistributoreDB();
Ciao.![]()