ComPtr::operator==, opérateur
Indique si deux objets ComPtr sont égaux.
bool operator==(
const ComPtr<T>& a,
const ComPtr<U>& b
);
bool operator==(
const ComPtr<T>& a,
decltype(__nullptr)
);
bool operator==(
decltype(__nullptr),
const ComPtr<T>& a
);
Paramètres
a
Une référence à un objet ComPtr.b
Une référence à un autre objet ComPtr.
Valeur de retour
Le premier opérateur produit true si l'objet a est égal à un objet b; sinon, false.
Les deuxième et troisième opérateurs produisent true si l'objet a est égal à nullptr; sinon, false.
Configuration requise
En-tête: client.h
Espace de noms: Microsoft::WRL