S
scope

A member's scope dictates its visibility. An automatic (local) variable is one defined inside a method body; its scope is the method itself, and it is not visible to code outside the defining method.

shift operator

The shift operators move the bits of an integer number to the right or the left, which results in another number.

short

A Java keyword used to declare a 16-bit signed primitive integer type in the range of -215 to 215-1 (or -32,768 to 32,767).

signature

A method's name and the type and order of its parameter list.

stack

The place where Java stores references to objects. The object data itself is stored on the heap. The stack is set to an initial fixed size, whereas the heap can grow to consume all available system memory. When a ...

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.