हिंदी

Explain How Member Functions of a Class Can Be Defined Outside the Class Definition and Inside Class Definition with an Example in C++ - Computer Science 1

Advertisements
Advertisements

प्रश्न

Explain how member functions of a class can be defined outside the class definition and inside class definition with an example in C++

उत्तर

Member functions of the class can be defined at two places

1) Outside the class definition

2) Inside the class definition

Irrespective of the place of definition, the function performs the same operation. Hence, code for the function body is identical in both the cases. Only function header is changed.

1)Outside the class definition

a) The general form of member function definition

return-type class-name : : function-name (Argument declaration)
{
   function body
}

outside the class definition is

b) The member function incorporates an identity label or membership label (i.e., class-name: :)

c)  This label tells the compiler the class to which the function belongs and restricts the scope of that function the objects of the class ‘class-name’ specified in the header line.

e.g.

//class definition
class try 1
{
   public:
   void display (void);
};
//member function definition outside class
void try 1 : : display (void)
{
   cout<<"Programming is func";
}

2) Inside the class definition
a) Another method for defining a member function is to replace the function declaration by the actual function definition.

e.g.

class try 1
{
  public:
  void display (void)
  { }
};

b) When a function is defined inside a class, it is treated as an inline function. Normally, only small functions are defined inside the class definition.

shaalaa.com
C++ Programming
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×