Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 1.61 KB

File metadata and controls

55 lines (44 loc) · 1.61 KB
title Assignment | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-language
ms.topic language-reference
dev_langs
C++
helpviewer_keywords
operators [C++], assignment
assignment operators [C++], overloaded
ms.assetid d87e4f89-f8f5-42c1-9d3c-184bca9d0e15
author mikeblome
ms.author mblome
ms.workload
cplusplus

Assignment

The assignment operator (=) is, strictly speaking, a binary operator. Its declaration is identical to any other binary operator, with the following exceptions:

  • It must be a nonstatic member function. No operator= can be declared as a nonmember function.

  • It is not inherited by derived classes.

  • A default operator= function can be generated by the compiler for class types if none exists.

The following example illustrates how to declare an assignment operator:

// assignment.cpp  
class Point  
{  
public:  
   Point &operator=( Point & );  // Right side is the argument.  
   int _x, _y;  
};  
  
// Define assignment operator.  
Point &Point::operator=( Point &ptRHS )  
{  
   _x = ptRHS._x;  
   _y = ptRHS._y;  
  
   return *this;  // Assignment operator returns left side.  
}  
  
int main()  
{  
}  

Note that the supplied argument is the right side of the expression. The operator returns the object to preserve the behavior of the assignment operator, which returns the value of the left side after the assignment is complete. This allows writing statements such as:

pt1 = pt2 = pt3;  

See also

Operator Overloading