template<> inline UINT AFXAPI HashKey(const CCKey& key)
{
   UINT32 hash = 1;
   for (int i = 0;i != 16;i++)
   hash += (key.m_key[i]+1)*((i*i)+1);
   return hash;
};template<>这个有什么作用?
编译的时候,还说
显式专用化;“UINT HashKey(const CCKey &)”不是函数模板的专用化
\
请教一下各位