I am not understanding the concept of final variable. In a for loop I have dynamic variable i which is crucial for me to refer an array. As soon as I use i, it throws me an error saying it should be final.
What exactly is final? Could you please help to get rid of that error?
My code is here:
for( int i = 0; i <4; i++)
{
Bitmap celeb1=Bitmap.getBitmapResource(fimagearray[i]);
Bitmap celeb1_focus=Bitmap.getBitmapResource(fimagearray[i]);
ImageButton celebbutton = new ImageButton(celeb1, celeb1_focus);
celebbutton.setChangeListener(new FieldChangeListener() {
public void fieldChanged(Field field, int context)
{
UiApplication.getUiApplication().pushScreen(new FetchTweets(fusernamearray[i]));
}
});
femaleSec.add(celebbutton);
}
finalif you want to pass them to a new thread, which one of the methods you're calling may do. Try creating afinalversion ofiand using that:final int j = i;. – Russell Dec 10 '11 at 11:02final, by the way, means that the value of the variable cannot be reassigned. If the variable is immutable, (like primitives orStrings), this means it can't be changed. If it's a mutable object, the variable cannot be changed to refer to a different object, but the internals of the object can still be changed. – Russell Dec 10 '11 at 11:04