C++ | Create class methods

Here, we are going to learn how to create class methods in C++ programming languages, how to access class methods with class object?
Submitted by IncludeHelp, on February 20, 2020 [Last updated : March 01, 2023]

Creating class methods in C++

In the below program, we are creating a C++ program to create class methods and how to access the class methods outside of the class?

C++ program to create class methods

/* C++ program to create class methods*/

#include <iostream>
using namespace std;

// class definition
// "Sample" is a class
class Sample {
public: // Access specifier
    // method definition 1
    void printText1()
    {
        cout << "IncludeHelp.com\n";
    }

    // method definition 2
    void printText2()
    {
        cout << "Let's learn together\n";
    }

    // method definition 3
    // it will accept value while calling and print it
    void printValue(int value)
    {
        cout << "value is: " << value << "\n";
    }
};

int main()
{
    // creating object
    Sample obj;

    // calling methods
    obj.printText1();
    obj.printText2();
    obj.printValue(101);

    return 0;
}

Output

IncludeHelp.com
Let's learn together
value is: 101


Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.