Showing posts with label final. Show all posts
Showing posts with label final. Show all posts

Monday, May 7, 2012

Does the Java "final" keyword actually improve security?


While there are many reasons to use the 'final' keyword in Java , one of the ones I keep hearing over and over again is that it makes your code more secure. While this seems to make sense in this trivial case:

Monday, April 16, 2012

Behaviour of final static method


I have been playing around with modifiers with static method and came across a weird behaviour.