哪个代码更适合您的性能点?我认为第二个代码是因为在 for 循环中创建 ref 并不好。
我可以知道你的意见吗?
// First Code
for (int i = 0; i < array.size(); i++) {
SipSession abc = (SipSession) array1.get(i);
}
// Second Code
SipSession abc = null;
for (int i = 0; i < array.size(); i++) {
abc = (SipSession) array1.get(i);
}