(→개요) |
Jmnote bot (토론 | 기여) 잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight )) |
||
10번째 줄: | 10번째 줄: | ||
---- | ---- | ||
< | <syntaxhighlight lang='java'> | ||
import java.io.IOException; | import java.io.IOException; | ||
import java.lang.reflect.Method; | import java.lang.reflect.Method; | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='java'> | ||
class Printer | class Printer | ||
{ | { | ||
24번째 줄: | 24번째 줄: | ||
} | } | ||
} | } | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='java'> | ||
public class Solution { | public class Solution { | ||
44번째 줄: | 44번째 줄: | ||
} | } | ||
} | } | ||
</ | </syntaxhighlight> |
2020년 11월 2일 (월) 02:51 기준 최신판
개요[ | ]
- HR자바 Java Generics
Java
Copy
import java.io.IOException;
import java.lang.reflect.Method;
Java
Copy
class Printer
{
//Write your code here
public static <E> void printArray(E[] arr) {
for( E el: arr ) {
System.out.println(el);
}
}
}
Java
Copy
public class Solution {
public static void main( String args[] ) {
Printer myPrinter = new Printer();
Integer[] intArray = { 1, 2, 3 };
String[] stringArray = {"Hello", "World"};
myPrinter.printArray(intArray);
myPrinter.printArray(stringArray);
int count = 0;
for (Method method : Printer.class.getDeclaredMethods()) {
String name = method.getName();
if(name.equals("printArray"))
count++;
}
if(count > 1)System.out.println("Method overloading is not allowed!");
}
}
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.