aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes another modifier for method-local inner class Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "another modifier for method-local inner class" Watch "another modifier for method-local inner class" New topic
Author

another modifier for method-local inner class

Vad Fogel
Ranch Hand

Joined: Aug 25, 2003
Posts: 504
K&B, p.479:

❑ The only modifiers you can apply to a method-local inner class are
abstract and final. (Never both at the same time, though.)

strictfp is another modifier that can also be combined with either final or abstract.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: another modifier for method-local inner class
 
Similar Threads
static modifiers
local-method inner class
access modifiers for method inner classes
final keyword for method parameters
what is the purpose for allowing local variables as abstract ?