We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Exemplo:
public class TestClass { void probe(int... x) { System.out.println("In ..."); } // 1 void probe(Integer x) { System.out.println("In Integer"); } // 2 void probe(long x) { System.out.println("In long"); }// 3 void probe(Long x) { System.out.println("In LONG"); } // 4 public static void main(String[] args) { Integer a = 4; new TestClass().probe(a); // 5 int b = 4; new TestClass().probe(b); // 6 } }