In languages like Java, the method parameters are "validated" in the compilation (at least the type):
public void facaAlgo(String str) {
// ...
}
// em algum outro lugar:
int i = 2;
this.facaAlgo(i); // erro de compilação!
In dynamic typ...
asked by
02.12.2014 / 12:46