Object-Oriented Programming

static Modifier

English

Overview

A modifier marking a member as belonging to the class, usable without creating an instance.

Details

A modifier that marks a member as belonging to the class rather than to a particular instance. It's shared across all instances, commonly used for things like tracking a running total or defining utility methods.

More Programming terms