12 lines
125 B
Plaintext
12 lines
125 B
Plaintext
|
import java.util.Vector;
|
||
|
|
||
|
class Overloading{
|
||
|
|
||
|
void method(Vector<String> v) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void method(Vector<Integer> v) {
|
||
|
|
||
|
}
|
||
|
}
|