F
field

A variable defined in a class, also called a member.

final

A Java keyword indicating a data item (class, field, or method) that cannot be overridden. A final class cannot be subclassed. For example, the following statement is illegal: public class SuperString extends String {}.

finally

A Java keyword indicating a block of statements that should execute whether or not the code within a corresponding try block threw an exception. A finally clause is not required, and is typically used to clean up resources (such as to close a connection to a database or socket, or to close a file opened in a corresponding try block).

Float

An object wrapper for the primitive float. This wrapper class defines a number of possibly useful constants, including ...

Get Java Garage now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.