
- C++ Basics
- C++ Home
- C++ Overview
- C++ Environment Setup
- C++ Basic Syntax
- C++ Comments
- C++ Data Types
- C++ Variable Types
- C++ Variable Scope
- C++ Constants/Literals
- C++ Modifier Types
- C++ Storage Classes
- C++ Operators
- C++ Loop Types
- C++ Decision Making
- C++ Functions
- C++ Numbers
- C++ Arrays
- C++ Strings
- C++ Pointers
- C++ References
- C++ Date & Time
- C++ Basic Input/Output
- C++ Data Structures
- C++ Object Oriented
- C++ Classes & Objects
- C++ Inheritance
- C++ Overloading
- C++ Polymorphism
- C++ Abstraction
- C++ Encapsulation
- C++ Interfaces
The static keyword and its various uses in C++
When static keyword is used, variable or data members or functions can not be modified again. It is allocated for the lifetime of program. Static functions can be called directly by using class name.
Static variables are initialized only once. Compiler persist the variable till the end of the program. Static variable can be defined inside or outside the function. They are local to the block. The default value of static variable is zero. The static variables are alive till the execution of the program.
The following is the syntax of static keyword.
static datatype variable_name = value; // Static variable static return_type function_name { // Static functions ... }
Here,
datatype − The datatype of variable like int, char, float etc.
variable_name − This is the name of variable given by user.
value − Any value to initialize the variable. By default, it is zero.
return_type − The datatype of function to return the value.
function_name − Any name to the function.
The following is an example of static keyword.
Example
#include <bits/stdc++.h> using namespace std; class Base { public : static int val; static int func(int a) { cout << "\nStatic member function is called"; cout << "\nThe value of a : " << a; } }; int Base::val=28; int main() { Base b; Base::func(8); cout << "\nThe static variable value : " << b.val; return 0; }
Output
Static member function is called The value of a : 8 The static variable value : 28
In the above program, a static variable is declared. A static function is defined in the class Base as shown below −
public : static int val; static int func(int a) { cout << "\nStatic member function called"; cout << "\nThe value of a : " << a; }
After the class and before main(), the static variable is initialized as follows.
int Base::val=28;
In the function main(), object of Base class is created and static variable is called. The static function is also called without using object of Base class.
Base b; Base::func(8); cout << "\nThe static variable value : " << b.val;
- Related Articles
- Static Keyword in C++
- static Keyword in Java
- static keyword in C#
- Java static keyword
- static Keyword in Java programming
- State the various uses of natural gas.
- static keyword in C++ vs Java
- What are the uses of this keyword in java?
- What are the uses of super keyword in java?
- What is Base and its uses?
- Explain the concept of null and its uses in TypeScript
- Write some important uses of the various constituents of petroleum.
- Theory of Constraints: Overview and its Uses
- Golang Program to Show Usage of Static keyword in Class
- Can we use "this" keyword in a static method in java?
