11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
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);
|
||
|
}
|
||
|
}
|