?? dict.h
字號:
/*------------------------------------------------------------------------*/
/* */
/* DICT.H */
/* */
/* Copyright Borland International 1991 */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( __DICT_H )
#define __DICT_H
#if !defined( __CLSTYPES_H )
#include <ClsTypes.h>
#endif // __CLSTYPES_H
#if !defined( __OBJECT_H )
#include <Object.h>
#endif // __OBJECT_H
#if !defined( __SET_H )
#include <Set.h>
#endif // __SET_H
#if !defined( __STDLIB_H )
#include <stdlib.h>
#endif
_CLASSDEF(Association)
_CLASSDEF(Dictionary)
class _CLASSTYPE Dictionary : public Set
{
public:
Dictionary( unsigned sz = DEFAULT_HASH_TABLE_SIZE ) :
Set(sz)
{
}
virtual void add( Object _FAR & );
Association _FAR & lookup( const Object _FAR & ) const;
virtual classType isA() const
{
return dictionaryClass;
}
virtual char _FAR *nameOf() const
{
return "Dictionary";
}
};
#endif // __DICT_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -