Last active
June 23, 2021 03:36
-
-
Save GabrielBrasileiro/2f3bf636bbd47a2ecc2d71aa75648485 to your computer and use it in GitHub Desktop.
ReifiedBytecode.java
This file contains hidden or 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
public static final void main() { | |
// Função de adquirir métodos | |
Method[] methods = String.class.getMethods(); | |
// Validação da String na lista | |
if (element instanceof String) { | |
// Atribuições | |
} | |
/** | |
* Códigos referentes aos métodos map e foreach que também são inline. o/ | |
* Eles vão aparecer conforme a ordem de chamada dos métodos, mas também é só um detalhe que pode ser ignorado no exemplo. | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment