embedded void acceptInt(int i) {} embedded void acceptFloat(int f) {} embedded void acceptChar(char c) {} embedded void acceptShort(short s) {} embedded void acceptDouble(double d) {} acceptInt('a'); acceptInt((byte) 0); acceptFloat(Int.MAX_VALUE); //acceptFloat(Long.MAX_VALUE); //acceptShort(Char.MAX_VALUE); //acceptChar(Short.MAX_VALUE); acceptDouble('a');