質問:
- 行で
Object o = myC.getConstructor(short.class).newInstance(myC.cast(pPrim));
""のハードコーディングを回避し
short.class
、代わりにからリテラルを取得する 方法はありpPrim
ますか?リフレクションを使用して新しいオブジェクトを作成
short.class
するの答えから 「」を使用するというアイデアを思いつきましたか? T o = ...
代わりに「」(たとえば、バイトまたはショート)を使用できるべきではありませんObject o = ...
か?私の方法は、クラスリテラルの最後にランタイムタイプトークンとしてあるものとほぼ同じだと思います。
- 振り返りの場合、私がやりたいことは何ですか?
バックグラウンド:
1Z0-803の準備として、FineganとLiguoriによる本OCA Java SE 7:Programmer 1StudyGuideを勉強しています。だから私はコードをたくさん練習しています。練習中に、charからキャストしたときにプリミティブ内で何が起こっているかを確認することを期待してクラスを作成しました。以下にコードをリストしました...ご覧になる場合は、byteToBinaryString、shortToBinaryString、primitiveToBinaryStringの各メソッドに注目してください...ここで私の質問が発生しました。
私を質問に導いたステップ:
- byteToBinaryStringを書き込みました
- byteToBinaryStringをshortToBinaryStringに複製しました
- 「おそらくジェネリックスで、このメソッドの繰り返しを回避できるはずです」と考えました。
- shortToBinaryStringをprimitiveToBinaryStringに複製し、ジェネリックに変換しようとしました
- これも反省だと思い始めました
- クラスリテラルのハードコーディングで立ち往生しました
これが私のコードです
import java.util.TreeMap;
import java.util.Set;
public class StackoverflowQuestion {
// I wrote this 1st
public static String byteToBinaryString(byte pByte) {
int primLength = 8;
int count = 0;
String s = "";
while ( count++ < primLength ) {
byte sm = (byte) (pByte & 0x01);
pByte >>= 1;
s = sm + s;
if ( count % 4 == 0 && count != primLength ) {
s = " " + s;
}
}
return s;
}
// Then I cloned byteToBinaryString to this and had the thought,
// I shouldn' have to repeat this
public static String shortToBinaryString(short pShort) {
int primLength = 16;
int count = 0;
String s = "";
while ( count++ < primLength ) {
short sm = (short) (pShort & 0x0001);
pShort >>= 1;
s = sm + s;
if ( count % 4 == 0 && count != primLength ) {
s = " " + s;
}
}
return s;
}
// So I cloned shortToBinaryString, modifidied to this and ...
public static <T extends Number> String primitiveToBinaryString(T pPrim) {
int primLength = 16;
int count = 0;
String className = pPrim.getClass().getName();
try {
Class<?> myC = Class.forName(className);
// ... got stuck here
Object o = myC.getConstructor(short.class).newInstance(myC.cast(pPrim));
System.out.println(pPrim + "<--pPrim.equals(o)-->" + pPrim.equals(o) + "<--" + o);
} catch ( Exception e ) {
System.out.println("Caught exception: " + e);
}
String s = "";
while ( count++ < primLength ) {
//T sm = new Class<T>(pPrim.intValue() & 0x0001);
//pPrim >>= 1;
//s = sm + s;
if ( count % 4 != 0 && count != primLength ) {
s = "-" + s;
}
}
return s;
}
public static void main ( String[] args ) {
// exercise byteToBinaryString
for ( int i = 0; i < 256; i++ ) {
char cByte = (char) i;
byte b1 = (byte) cByte;
System.out.printf( "char(%c): charValue(%05d): bin(%s): dec(%+6d)\n", cByte, (int) cByte, byteToBinaryString(b1), b1 );
}
// exercise shortToBinaryString
// please ignore my use of TreeMap, just figuring out how it works
TreeMap<Integer, String> charsTM = new TreeMap<Integer, String>();
charsTM.put(00000, "00000");
charsTM.put(00001, "00001");
charsTM.put(32766, "32766");
charsTM.put(32767, "32767");
charsTM.put(32768, "32768");
charsTM.put(32769, "32769");
charsTM.put(65535, "65535");
short s1 = 32767;
char ch1 = 32768;
Set<Integer> charKeys = charsTM.keySet();
// loop through the boundary values I selected to show what's going on in memory
for ( Integer i : charKeys ) {
ch1 = (char) i.intValue();
s1 = (short) ch1;
System.out.printf( "char(%c): charValue(%05d): bin(%s): dec(%+6d)\n", ch1, (int) ch1, shortToBinaryString(s1), s1 );
}
// exercise primitiveToBinaryString
primitiveToBinaryString( (byte) 127 );
primitiveToBinaryString( (short) 32767 );
primitiveToBinaryString( (int) 2147483647);
primitiveToBinaryString( 2147483648L);
primitiveToBinaryString( 2147483648F);
primitiveToBinaryString( 2147483648D);
}
}