- TypeScript Tutorial
- TypeScript Home
- TypeScript Introduction
- TypeScript Setup
- TypeScript First Program
- TypeScript vs JavaScript
- TypeScript Data Types
- TypeScript Type Inference
- TypeScript Type Annotations
- TypeScript Interfaces
- TypeScript Enums
- TypeScript Type Aliases
- TypeScript Type Assertions
- TypeScript Variables
- TypeScript Functions
- TypeScript Functions
- TypeScript Optional Parameters
- TypeScript Default Parameters
- TypeScript Rest Parameters
- TypeScript Arrow Functions
- Classes and Objects
- Introduction to Classes
- Properties and Methods
- Access Modifiers
- Static Members
- Inheritance
- Abstract Classes
- Interfaces vs Classes
- Advanced Types
- TypeScript Union Types
- TypeScript Intersection Types
- TypeScript Literal Types
- TypeScript Nullable Types
- TypeScript Type Guards
- TypeScript Discriminated Unions
- TypeScript Index Signatures
- TypeScript Generics
- Introduction to Generics
- TypeScript Generic Functions
- TypeScript Generic Classes
- TypeScript Generic Constraints
- TypeScript Modules
- Introduction to Modules
- TypeScript Import and Export
- TypeScript Default Exports
- TypeScript Namespace
- Decorators
- Introduction to Decorators
- TypeScript Class Decorators
- TypeScript Method Decorators
- TypeScript Property Decorators
- TypeScript Parameter Decorators
- Configuration
- TypeScript tsconfig.json File
- TypeScript Compiler Options
- TypeScript Strict Mode
- TypeScript Watch Mode
Static Members in TypeScript
In TypeScript, static members (properties and methods) belong to the class itself rather than to instances of the class. Static members are accessed via the class name, not through an instance of the class. This is useful when you want to share data or behavior that should be common to all instances of a class.
Key Points About Static Members:
- Static members are declared using the
static
keyword. - Static members can be accessed directly on the class, without needing to create an instance.
- Static members cannot be accessed from instance methods unless specifically referenced through the class name.
Declaring Static Properties
Static properties are defined using the static
keyword, and they are shared by all instances of the class.
Example:
class Counter {
static count: number = 0;
constructor() {
Counter.count++; // Static property accessed via the class name
}
static resetCount(): void {
Counter.count = 0; // Static method can also access static properties
}
}
console.log(Counter.count); // Output: 0
const counter1 = new Counter();
const counter2 = new Counter();
console.log(Counter.count); // Output: 2
Counter.resetCount();
console.log(Counter.count); // Output: 0
In this example:
- The
count
property is static, so it's shared across all instances of theCounter
class. - The
resetCount()
method is static, so it can be called without creating an instance of the class. - Each time a new instance is created, the
count
property is incremented.
Declaring Static Methods
Static methods are functions that belong to the class itself. These methods can be called directly on the class, not on an instance.
Example:
class MathUtility {
static add(a: number, b: number): number {
return a + b;
}
static subtract(a: number, b: number): number {
return a - b;
}
}
console.log(MathUtility.add(5, 3)); // Output: 8
console.log(MathUtility.subtract(5, 3)); // Output: 2
In this example:
add
andsubtract
are static methods, so they are called directly on theMathUtility
class without needing an instance.
Static Members and Instance Members
Static members are distinct from instance members. Instance members require an object instance to access, while static members belong to the class itself.
Example:
class Car {
static numberOfCars: number = 0;
make: string;
model: string;
constructor(make: string, model: string) {
this.make = make;
this.model = model;
Car.numberOfCars++; // Increment the static property
}
static getCarCount(): number {
return Car.numberOfCars; // Static method accessing static property
}
}
const car1 = new Car("Toyota", "Corolla");
const car2 = new Car("Honda", "Civic");
console.log(Car.numberOfCars); // Output: 2
console.log(Car.getCarCount()); // Output: 2
In this example:
- The
numberOfCars
property is static and keeps track of how manyCar
instances have been created. - The
getCarCount()
method is static and can be called directly from the class to retrieve the count. - The instance properties
make
andmodel
belong to individual objects.
Static Initialization
Static members are initialized only once, when the class is first used. This allows you to initialize shared data or behavior before any instances are created.
Example:
class Database {
static isConnected: boolean = false;
static connect(): void {
if (!Database.isConnected) {
Database.isConnected = true;
console.log("Database connected.");
} else {
console.log("Already connected.");
}
}
}
Database.connect(); // Output: Database connected.
Database.connect(); // Output: Already connected.
In this example:
- The
isConnected
static property tracks the connection status. - The
connect()
static method establishes a connection if not already connected, demonstrating how static properties can be used to manage global state.
Summary
Static members in TypeScript are used when you want to define properties or methods that belong to the class itself rather than any individual instance.
- Static properties are shared across all instances of the class.
- Static methods can be called on the class directly, without needing an instance.
- Static members can be useful for global data management or utility functions, and they are initialized once when the class is first used.
By using static members appropriately, you can manage class-level data and behavior more effectively.