19 lines
496 B
Java
19 lines
496 B
Java
// housekeeping/OverloadingVarargs2.java
|
|
// (c)2020 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
// {WillNotCompile}
|
|
|
|
public class OverloadingVarargs2 {
|
|
static void f(float i, Character... args) {
|
|
System.out.println("first");
|
|
}
|
|
static void f(Character... args) {
|
|
System.out.print("second");
|
|
}
|
|
public static void main(String[] args) {
|
|
f(1, 'a');
|
|
f('a', 'b');
|
|
}
|
|
}
|