假设我有这样的方法:
static class Example
{
public static <N extends Number> Number getOddBits(N type)
{
if (type instanceof Byte) return (byte)0xAA;
else if (type instanceof Short) return (short)0xAAAA;
else if (type instanceof Integer) return 0xAAAAAAAA;
else if (type instanceof Float) return Float.intBitsToFloat(0xAAAAAAAA);
else if (type instanceof Long) return 0xAAAAAAAAAAAAAAAAL;
else if (type instanceof Double) return Double.longBitsToDouble(0xAAAAAAAAAAAAAAAAL);
throw new IllegalArgumentException();
}
}
该方法的实际细节并不重要。但是,要调用此方法,我们使用:
Example.<Float>getOddBits(0f);
我的问题是,是否可以在没有常规参数的情况下编写这样的方法。没有重载,最终没有拳击。
理想情况下调用:
Example.<Byte>getOddBits();