CComBSTR::operator !
Vérifie si la chaîne d' BSTR est NULL.
bool operator !( ) const throw( );
Valeur de retour
Retourne true si le membre de m_str est NULL; sinon, false.
Notes
Cet opérateur vérifie qu'une valeur NULL, pas une chaîne vide.
Exemple
// STDMETHOD(BSTRToUpper)(/*[in, out]*/ BSTR bstrConv);
STDMETHODIMP InplaceBSTRToUpper(BSTR bstrConv)
{
// Assign bstrConv to m_str member of CComBSTR
CComBSTR bstrTemp;
bstrTemp.Attach(bstrConv);
// Make sure BSTR is not NULL string
if (!bstrTemp)
return E_POINTER;
// Make string uppercase
HRESULT hr;
hr = bstrTemp.ToUpper();
if (hr != S_OK)
return hr;
// Set m_str to NULL, so the BSTR is not freed
bstrTemp.Detach();
return S_OK;
}
Configuration requise
Header: atlbase.h