?? dict.cpp
字號:
/*------------------------------------------------------------------------*/
/* */
/* DICT.CPP */
/* */
/* Copyright Borland International 1991 */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( __ASSOC_H )
#include <Assoc.h>
#endif // __ASSOC_H
#if !defined( __DICT_H )
#include <Dict.h>
#endif // __DICT_H
#if !defined( __IOSTREAM_H )
#include <iostream.h>
#endif // __IOSTREAM_H
#if !defined( __CLSTYPES_H )
#include <ClsTypes.h>
#endif // __CLSTYPES_H
void Dictionary::add( Object& objectToAdd )
{
if( !objectToAdd.isAssociation() )
ClassLib_error( __ENOTASSOC );
else
Set::add( objectToAdd );
}
Association& Dictionary::lookup( const Object& toLookUp ) const
{
Association toFind( (Object&)toLookUp, NOOBJECT );
toFind.ownsElements(0);
Association& found = (Association&)findMember( toFind );
return found;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -