📄 assoc.h
字号:
/*------------------------------------------------------------------------*/
/* */
/* ASSOC.H */
/* */
/* Copyright Borland International 1991 */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( __ASSOC_H )
#define __ASSOC_H
#if !defined( __CLSTYPES_H )
#include <ClsTypes.h>
#endif // __CLSTYPES_H
#if !defined( __OBJECT_H )
#include <Object.h>
#endif // __OBJECT_H
#if !defined( __SHDDEL_H )
#include <ShdDel.h>
#endif // __SHDDEL_H
_CLASSDEF(ostream)
_CLASSDEF(Association)
class _CLASSTYPE Association : public Object, public virtual TShouldDelete
{
public:
Association( Object _FAR & k, Object _FAR & v ) :
aKey( k ),
aValue( v )
{
}
Association( const Association _FAR & a ) :
aKey(a.aKey),
aValue(a.aValue)
{
}
virtual ~Association();
Object _FAR & key() const
{
return aKey;
}
Object _FAR & value() const
{
return aValue;
}
virtual classType isA() const
{
return associationClass;
}
virtual char _FAR *nameOf() const
{
return "Association";
}
virtual hashValueType hashValue() const
{
return aKey.hashValue();
}
virtual int isEqual( const Object _FAR & ) const;
virtual int isAssociation() const
{
return 1;
}
virtual void printOn( ostream _FAR & ) const;
private:
Object _FAR & aKey;
Object _FAR & aValue;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -