vote up -1 vote down star

when i declared final arraylist() then can i perform insert,search and update operation in that arraylist or not??please reply me... thanks in advance

flag
2  
What programming language are you using? – lutz Nov 4 at 7:50
1  
Which language, etc.? – dmeister Nov 4 at 7:50

2 Answers

vote up 0 vote down

If you're talking about Java's ArrayList, then, yes you can. Final means just that you can't change which ArrayList instance your variable refers to.

link|flag
vote up 1 vote down

Final means that the variable pointing to the arraylist can't change. But that does not mean that you can not call any method of the object, so you can perform insert, search and any other operation to the object

link|flag
I guess the language is Java – rossoft Nov 4 at 7:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.