PRB: C2440 Error When Using CMap and User Defined Key Type

Last reviewed: July 2, 1997
Article ID: Q158541
The information in this article applies to:
  • The Microsoft Foundation Classes (MFC) included with: - Microsoft Visual C++, 32-bit Edition, versions 4.0, 4.1

SYMPTOMS

When using the Cmap-templated collection class with a user-defined class as the data type for key arguments, the compiler generates the following compiler error:

   afxtempl.h(97) : error C2440: 'abstract declarator' :
       cannot convert from 'class CClass' to 'unsigned long'

where CClass is the name of the user-defined class.

CAUSE

The default implementation of CMap's HashKey function takes an DWORD (unsigned long) as a parameter. The compiler does not know how to convert from a user-defined class type to an unsigned long.

RESOLUTION

Create a static template function to generate a custom HashKey value.

STATUS

This behavior is by design.

MORE INFORMATION

Sample Code

This is a sample declaration of a CMap that uses a user-defined class for as data-type for a Cmap:

   #include <afxtempl.h>

   class CEmployee : public CObject
   {
   public:
   CString m_firstName;
   CString m_lastName;

   public:
   CEmployee(){ };

   // Copy constructor required by Cmap.
   CEmployee(const CEmployee& n)
   {
   m_firstName = n.m_firstName;
   m_lastName = n.m_lastName;
   }


   // Operator= is required by Cmap.
   CEmployee& operator=(const CEmployee& n)
   {
   m_firstName = n.m_firstName;
   m_lastName = n.m_lastName;
   return *this;
   }

   BOOL AFXAPI operator==(const CEmployee& n) const
   {
   return m_firstName == n.m_firstName
   && m_lastName == n.m_lastName;
   }
   };

   template<>
   inline UINT AFXAPI HashKey(CEmployee& key)
   {
   return HashKey((LPCTSTR)key.m_lastName) +
                   HashKey((LPCTSTR)key.m_firstName);
   }

   // Declare the CMap object.
   CMap<CEmployee, CEmployee&, CEmployee, CEmployee&> EmployeeMap;
 

	
	


Keywords : kberrmsg kbprg MfcMisc vcbuglist420
Technology : kbMfc
Version : 4.0 4.1
Platform : NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 2, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.