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.





Java Garage
Java Garage
ISBN: 0321246233
EAN: 2147483647
Year: 2006
Pages: 228
Authors: Eben Hewitt

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net