Microsoft KB Archive/104650

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 08:51, 20 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
Knowledge Base


INFO: Default Assignment Used, Not User-Defined operator=()

Article ID: 104650

Article Last Modified on 7/5/2005



APPLIES TO

  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 1.5 Professional Edition
  • Microsoft Visual C++ 1.51
  • Microsoft Visual C++ 1.52 Professional Edition
  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 2.0 Professional Edition
  • Microsoft Visual C++ 2.1
  • Microsoft Visual C++ 4.0 Standard Edition
  • Microsoft Visual C++ 5.0 Standard Edition
  • Microsoft Visual C++ 6.0 Service Pack 5



This article was previously published under Q104650

SUMMARY

The Microsoft "C++ Language Reference" for C/C++ version 7.0 states the following:

...if the class declares a user-defined operator=() that takes an argument of type "reference to class-name", no default assignment operator is generated.


(See the Memberwise Assignment and Initialization section of the Special Member Functions chapter.) This statement may be confusing. However, the term "argument" means formal parameter, not actual parameter.

MORE INFORMATION

The following program outputs "Default assignment used". The default assignment operator is used for the assignment and not Derived::operator=() as might be expected. The Derived::operator(const Base &) function specifies a const Base & for a formal parameter. Because there is no operator=() that specifies a formal parameter of type "reference to class- name", the default assignment operator is generated and used.

Some compiler vendors have interpreted the C++ language differently by using the term "argument" in the specification to mean actual parameter. In that case, the default assignment operator is not generated and the program above will output "Derived::operator=() called" because an object of type Derived is an object of type Base.

Sample Code

/* Compile Options needed: None
*/ 

#include <iostream.h>

char* message1 = "Derived::operator=() called";
char* message2 = "Default assignment used";

class Base
{
public:
   char* OperatorCalled;
   Base() { OperatorCalled = message2; }
};

class Derived : public Base
{
public:
   void operator=(const Base&) { OperatorCalled = message1; }
   Derived() {}
};

void main()
{
   Derived first, second;
   first = second;
   cout << first.OperatorCalled;
}
                


Additional query words: 8.00 8.00c 9.00 9.10

Keywords: kbinfo kbcpponly kbcompiler KB104650