11 lines
173 B
Java
11 lines
173 B
Java
import java.util.Vector;
|
|
|
|
class OverlaodGen {
|
|
void method(Vector<Integer> v) {
|
|
// Integer i = v.get(0);
|
|
}
|
|
|
|
void method(Vector<String> v) {
|
|
// String s = v.get(0);
|
|
}
|
|
} |