Last active
May 12, 2019 18:38
-
-
Save andersonfraga/bc285542d343de0f14d7c8b59e80a054 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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