Make function inside class in C++ by R4R Team

What is Data Method?
In C language we have a function, so data method are nothing new they are also function but in many programming language like C++, java etc function are called as data method.
-function inside class called as data method

How make function or data method inside class?

program:

#include< iostream>
using namespace std;
//Create class
class myclass
{
public:
//Create data method
int func()
{
cout<<"This is my function";
}
};
int main()
{
//create object
myclass obj;
//call data method
obj.func();
return 0;
}


output-

This is my function

-In this program, we create a class and then create a simple function named as 'func()' which print one statement.




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!