Skip to content

Instantly share code, notes, and snippets.

@andersonfraga
Last active May 12, 2019 18:38
Show Gist options
  • Save andersonfraga/bc285542d343de0f14d7c8b59e80a054 to your computer and use it in GitHub Desktop.
Save andersonfraga/bc285542d343de0f14d7c8b59e80a054 to your computer and use it in GitHub Desktop.
class A<T> {
private T var;
public A(T elm) {
var = elm;
}
public void damm() {
// this.var para simplificar
fun((T) method.invoke(this.var);
}
public void fun(T foo) {
// ...
// Como acessar?!
if (foo[i][j] == bar) {}
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment