quando tento executar aparece a seguinte mensagem de erro: Cannot make a static reference to the non-static method setNumero(int) from the type conta getNumero cannot be resolved or is not a field
at TestaGetESet.main(TestaGetESet.java:4)
public class TestaGetESet {
public static void main(String[] args) {
conta contav = new conta();
conta.setNumero(1232);
System.out.println(contav.getNumero());
}
}