Keyword Java Flashcards
(49 cards)
abstract
Specifies that a class or method will be implemented later, in a subclass.
assert
Describes a predicate placed in a java program to indicate that the developer thinks that the predicate is always true at that place.
boolean
A data type that can hold True and False values only.
break
A control statement for breaking out of loops.
byte
A data type that can hold 8-bit data values.
case
Used in switch statement to mark blocks of text.
catch
Catches exceptions generated by try statements.
char
A data type that can hold unsigned 16-bit Unicode characters.
class
Declares a new class.
continue
Sends control back outside a loop.
default
Specifies the default block of code in a switch statement.
do
Starts a do-while loop.
double
A data type that can hold 64-bit floating-point numbers.
else
Indicates alternative branches in an if statement.
enum
Used to declare an enumerated type. Enumerations extend the base class.
extends
Indicates that a class is derived from another class or interface.
final
Indicates that a variable holds a constant values or that a method will not be overridden.
finally
Indicates a block of code in a try-catch structure that will always be executed.
float
A data type that holds a 32-bit floating - point number.
for
Used to start a for loop.
if
Test a true/false expression and branches accordingly.
implements
Specifies that a class implements an interface.
import
References other classes.
instanceof
Indicates whether an object is an instance of a specific class or implements an interface.