Skip to content

Instantly share code, notes, and snippets.

@manfe
Created July 5, 2013 06:50
Show Gist options
  • Select an option

  • Save manfe/5932476 to your computer and use it in GitHub Desktop.

Select an option

Save manfe/5932476 to your computer and use it in GitHub Desktop.
Aprendendo Java - Detalhado
public class ExemploInstanceof {
public static void main(String[] args) {
Object obj = new String("Texto");
if (obj instanceof String) {
System.out.println("obj é uma instância de String");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment