Open In App

C++ Classes and Objects

Last Updated : 20 Mar, 2025
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

In C++, classes and objects are the basic building block that leads to Object-Oriented programming in C++. We will learn about C++ classes, objects, look at how they work and how to implement them in our C++ program.

What is a Class?

A class is a user-defined data type, which holds its own data members and member functions that can be accessed and used by creating an instance of that class. A C++ class is like a blueprint for an object.

For Example: Consider the Class of Cars. There may be many cars with different names and brands but all of them will share some common properties like all of them will have 4 wheelsSpeed LimitMileage range, etc. The car can also accelerate, turn, apply brakes, etc. So here, the Car is the class, wheels, speed limits, and mileage are its attributes (data members) and accelerate, turn, apply brakes are its methods (member functions).

Defining Class

A class must be defined before its use. In C++, it is defined using the keyword class keyword as shown:

C++
class className {
access_specifier:

    // data member

    // member method
};
  • Data Members: These are the variables that are defined inside the class.
  • Member Functions: Functions declared inside a class. Also referred to as a member method.

Example:

C++
class GfG {
public:

    // Data member
    int val;
    
    // Member function
    void show() {
        cout << "Value: " << val << endl;
    }
};

In the above, GfG class is created with a data member val and member function show(). Here, member function is defined inside the class, but they can also be just declared in the class and then defined outside using scope resolution operator ::

Access Modifiers

In C++ classes, we can control the access to the members of the class using Access Specifiers. Also known as access modifier, they are the keywords that are specified in the class and all the members of the class under that access specifier will have particular access level.

In C++, there are 3 access specifiers that are as follows:

  1. Public: Members declared as public can be accessed from outside the class.
  2. Private: Members declared as private can only be accessed within the class itself.
  3. Protected: Members declared as protected can be accessed within the class and by derived classes.

If we do not specify the access specifier, the private specifier is applied to every member by default.

What is an Object?

When a class is defined, only the specification (attributes and behaviour) for the object is defined. No memory is allocated to the class definition. To use the data and access functions defined in the class, we need to create its objects.

Objects are the actual entities that are created as an instance of a class. There can be as many objects of a class as desired.

Create Object

Once the class is defined, we can create its object in the same way we declare the variables of any other inbuilt data type.

C++
className objectName;

This statement creates an object of className class.

Member Access

Members of the class can be accessed inside the class itself simply by using their assigned name.

To access them outside, the (.) dot operator is used with the object of the class.

C++
obj.member1 // For data members
obj.member2(..) // For functions

There obj is the name of the object of the given class, member1 is data member and member2 is member function.

Example:

C++
//Driver Code Starts{
#include <bits/stdc++.h>
using namespace std;

// Creating a class
class GfG {
public:

    // Data member
    int val;
    
    // Member function
    void show() {
        cout << "Value: " << val << endl;
    }
    
};

int main() {
    
//Driver Code Ends }

    // Create Object
    GfG obj;
    
    // Access data member and assign
    // it some value
    obj.val = 10;
    
    // Access member method
    obj.show();

//Driver Code Starts{
    
    return 0;
}
//Driver Code Ends }

Output
Value: 10

Whether we can access a member of a class depends on the access specifier in which it is declared. In the above example, if the val variable was declared as private, then we would not have been able to access it in the main function.

Special Member Functions

In C++ classes, there are some special member functions that are essential to manage objects and provide some basic functionalities. ]

Constructor

Constructors are special class members which are called by the compiler every time an object of that class is instantiated. They are used to construct the objects and making them ready for use. Constructors have the same name as the class.

Example:

C++
//Driver Code Starts{
#include <bits/stdc++.h>
using namespace std;

class MyClass {
public:

//Driver Code Ends }

    // Constructor
    MyClass() {
        cout << "Constructor called!";
    }

//Driver Code Starts{
};

int main() {
    
    // Constructor automatically 
    // called when object is created.
    MyClass obj;
    return 0;
}

//Driver Code Ends }

Output
Constructor called!

Note: If the programmer does not define the constructor, the compiler automatically creates the default, copy and move constructor.

Destructors

Destructor is another special member function that is called by the compiler when the scope of the object ends. It deallocates all the memory previously used by the object of the class so that there will be no memory leaks. The destructor also has the same name as the class but with tilde (~) as prefix.

Example:

C++
//Driver Code Starts{
#include <bits/stdc++.h>
using namespace std;

class MyClass {
public:
    MyClass() {
        cout << "Constructor called!" << endl;
    }

//Driver Code Ends }

    // Destructor
    ~MyClass() {
        cout << "Destructor called!";
    }

//Driver Code Starts{
};

int main() {
    MyClass obj;
    // Destructor will be called 
    // automatically when obj goes out of scope
    return 0;
}

//Driver Code Ends }

Output
Constructor called!
Destructor called!

Static Members

Members of the class can be declared as static. These static members of a class are not associated with the objects of the class but with the class itself. The main feature of these members is that they are accessible directly through the class without creating any objects. Both data members and member methods can be static:

Static Data Members

Static data members shared by all objects of the class, meaning only one copy exists for all objects of the class and they are declared with the static keyword.

Example:

C++
//Driver Code Starts{
#include <iostream>
using namespace std;

//Driver Code Ends }

class GfG {
public:
    static int val;
};

// Initialize static member
int GfG::val = 22;
int main() {
    
    // Access without creating object
    cout << GfG::val << endl;

//Driver Code Starts{
}
//Driver Code Ends }

Output
22

Static Member Function

Static member functions are associated with the class itself rather than any specific object. They can only access static data members and cannot access instance data members. Static member functions are called using the class name, not the object.

We defined the member function inside the class, but we can also define the member function outside the class. To define a member function outside the class definition, we use scop resolution (::) operator.

Example:

C++
//Driver Code Starts{
#include <iostream>
using namespace std;

//Driver Code Ends }

class GfG {
public:
    static void printHello(); 
};

// Definintion of static member function
void GfG::printHello() {
    cout << "Hello World";
}
int main() {
    
    // Access without creating object
    GfG::printHello();

//Driver Code Starts{
    
    return 0;
}
//Driver Code Ends }

Output
Hello World

Friend Class and Function

In C++, friend classes and functions allow access to the private and protected members of other classes:

A friend class has the ability to access the private and protected members of other classes where it is declared as a friend. This feature can be useful when it is necessary for one class to access the private and protected members of another class.

A friend function in C++ is similar to a friend class. It can be given special permission to access the private and protected members of a class. Although it is not a member function of the class, it can still access and modify those private and protected members because it is declared as a friend.

Local Class

Classes are generally declared in global scope and are accessible to every function or other classes once they are defined. But C++ also provides facility to define a class within a function. It is called local class in C++ and is only accessible in that function.

Nested Class

A nested class is a class defined within another enclosing class. As a member of the enclosing class, it has the same access rights as any other member. The members of the enclosing class do not have special access to the members of the nested class; the standard access rules apply.

Enum Class

Enum classes in C++ are a safer and more organized way of using enums. They help to group related constants together while avoiding naming problems and ensuring better type safety.

this Pointer

In C++, this pointer is a pointer that points to the current instance of a class. It is used within the member functions of a class to refer to the object of that class. This pointer allows access to the calling object’s data and methods within its own member functions.

C++
class A{
    int n;
    A(int n) {
        this->n = n;
    }
}

Class vs Object

The following table lists the primary differences between the classes and objects in C++:

ClassObject
A blueprint or template for creating objects.An instance of a class with actual values.
No memory is allocated for a class until an object is created.Memory is allocated when an object is created.
Conceptual entity describing structure and behaviour.A real-world entity created from the class.
Defines properties and functions common to all objects of that type.Stores specific data and manipulates it using class functions.
Represents a general concept or type.Represents a specific instance of the class.

C++ Classes and Objects – FAQs

Can we create an object without a class in C++?

No, objects are instances of classes, so a class must be defined before any objects can be created in C++.

Can we have more than one constructor in a class?

Yes, C++ supports constructor overloading, allowing multiple constructors in the same class, each with different parameter lists.

Can we create an object of a class inside another class?

Yes, one class can have objects of other classes as its members, a concept known as composition.

Why do we give semicolons at the end of class?

Many people might say that it’s a basic syntax and we should give a semicolon at the end of the class as its rule defines in cpp. But the main reason why semi-colons are there at the end of the class is compiler checks if the user is trying to create an instance of the class at the end of it.



Next Article
Practice Tags :

Similar Reads

three90RightbarBannerImg