Instance Variable Vs Static Variable

  • Each object will have its own copy of the instance variable whereas We can only have one copy of a static variable per class irrespective of how many objects we create.
  • Changes made in an instance variable using one object will not be reflected in other objects as each object has its own copy of the instance variable. In the case of static, changes will be reflected in other objects as static variables are common to all objects of a class.
  • We can access instance variables through object references and Static Variables can be accessed directly using the class name.
  • The syntax for static and instance variables:
class Example
{
    static int a; // static variable
    int b;        // instance variable
}


C++ Variables

Variables in C++ is a name given to a memory location. It is the basic unit of storage in a program. 

  • The value stored in a variable can be changed during program execution.
  • A variable is only a name given to a memory location, all the operations done on the variable effects that memory location.
  • In C++, all the variables must be declared before use.

Similar Reads

How to Declare Variables?

A typical variable declaration is of the form:...

Rules For Declaring Variable

The name of the variable contains letters, digits, and underscores. The name of the variable is case sensitive (ex Arr and arr both are different variables). The name of the variable does not contain any whitespace and special characters (ex #,$,%,*, etc). All the variable names must begin with a letter of the alphabet or an underscore(_).  We cannot used C++ keyword(ex float,double,class)as a variable name....

Difference Between Variable Declaration and Definition

The variable declaration refers to the part where a variable is first declared or introduced before its first use. A variable definition is a part where the variable is assigned a memory location and a value. Most of the time, variable declaration and definition are done together.See the following C++ program for better clarification:...

Types of Variables

...

Instance Variable Vs Static Variable

There are three types of variables based on the scope of variables in C++...