Partilhar via


CComBSTR::operador!

Verifica se BSTR string é nulo.

bool operator !( ) const throw( );

Valor de retorno

RetornaTrue if the m_str membro é NULO; caso contrário, False.

Comentários

Este operador só verifica um valor nulo, não para uma seqüência de caracteres vazia.

Exemplo

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

Requisitos

Cabeçalho: atlcomcli.h

Consulte também

Referência

Classe CComBSTR

Outros recursos

CComBSTR membros