M
members

The data elements that make up a class: inner classes, methods, and variables.

method

An element defined inside a class that performs a function, can accept arguments, and return a single result. A method body consists of the block of statements inside curly braces.

modifier

A keyword placed in the definition of a class, method, or variable that changes how the element acts. There are visibility modifiers (typically called access modifiers), such as public, protected, and private, and other modifiers, such as final or native.

modulus

The operator that returns the remainder of an integer division operation, represented in Java as %. For example, 5 % 2 returns 1.

multiple inheritance

Refers to the capability of a programming language to support a class extending more than one class. This is possible in C++, but not in Java. This decision was made on purpose in order to help code clarity and encourage good design.

multithreaded

A program that executed multiple threads concurrently.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.224.30.19