Java syntax: Difference between revisions

Content deleted Content added
Modifiers: Add excerpt for final class
Modifiers: Add excerpt for abstract class
Line 1,047:
* '''<code>final</code>''' - Classes marked as <code>final</code> cannot be extended from and cannot have any subclasses.
* '''<code>strictfp</code>''' - Specifies that all floating-point operations must be carried out conforming to [[IEEE 754]] and forbids using enhanced precision to store intermediate results.
 
=====Abstract class=====
{{Excerpt|Abstract type #Java}}
 
=====Final class=====