CRBMap::Lookup
Chiamare questo metodo per trovare le chiavi o valori nell'oggetto CRBMap.
bool Lookup(
KINARGTYPE key,
VOUTARGTYPE value
) const throw(...);
const CPair* Lookup(
KINARGTYPE key
) const throw( );
CPair* Lookup(
KINARGTYPE key
) throw( );
Parametri
key
Specifica la chiave che identifica l'elemento da cercare.corrispondente
Variabile che riceve il valore trovato.
Valore restituito
Il primo form il metodo restituisce se la chiave non esiste, in caso contrario false. Il secondo e il terzo form restituiscono un puntatore a CPair.
Note
Vedere la documentazione per la classe base CRBTree per informazioni sugli altri metodi disponibili.
Esempio
// Look up the value for a key of 0
double v;
myMap.Lookup(0,v);
Requisiti
Header: atlcoll.h