Udostępnij za pośrednictwem


CComBSTR::operator!

Sprawdza, czy BSTR string jest NULL.

bool operator !( ) const throw( );

Wartość zwracana

Zwraca true Jeśli m_str jest NULL; w przeciwnym razie false.

Uwagi

Ten operator sprawdza tylko wartość NULL, a nie na pusty ciąg.

Przykład

// 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; 
}

Wymagania

Nagłówek: atlbase.h

Zobacz też

Informacje

Klasa CComBSTR