Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C++ | Static Keyword | Question 2

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article




#include <iostream>
using namespace std;
  
class Player
{
private:
    int id;
    static int next_id;
public:
    int getID() { return id; }
    Player()  {  id = next_id++; }
};
int Player::next_id = 1;
  
int main()
{
  Player p1;
  Player p2;
  Player p3;
  cout << p1.getID() << " ";
  cout << p2.getID() << " ";
  cout << p3.getID();
  return 0;
}


(A) Compiler Error
(B) 1 2 3
(C) 1 1 1
(D) 3 3 3
(E) 0 0 0


Answer: (B)

Explanation: If a member variable is declared static, all objects of that class have access to a single instance of that variable. Static variables are sometimes called class variables, class fields, or class-wide fields because they don’t belong to a specific object; they belong to the class.

In the above code, static variable next_id is used to assign a unique id to all objects.


Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads