方案A:動態鑄造效果構架
List<String> MyList;
while(index<100) {
MyList = MyObject.get(MyIndex);
}
案例B:
List MyList;
while(index<100) {
MyList = (List<String>) MyObject.get(MyIndex);
}
哪上面會更快嗎?
在情況B,我假設動態鑄造發生在整個循環。所以,這是我的假設,第二個可能會比第一個慢。
請說哪一個能讓我更快?