I would like to know, if possible, typing an instance, a declaration, or prototype of a function.
cadastrarPessoa(Pessoa p);
or even in the scope of a function:
public function criarPessoa() {
Pessoa p = new Pessoa();
...
}
I would like to know, if possible, typing an instance, a declaration, or prototype of a function.
cadastrarPessoa(Pessoa p);
or even in the scope of a function:
public function criarPessoa() {
Pessoa p = new Pessoa();
...
}