Java / final keyword
Can we make an array final in Java? Can you change its elements after initializing?
Yes, you can make an array final in Java and you can change it's elements as well. Both array and collection classes can be made final and you can still change their elements.
More Related questions...