Partilhar via


CComBSTR::Attach

Anexa BSTR ao objeto de CComBSTR definindo o membro da m_str para src.

void Attach(
   BSTR src 
) throw( );

Parâmetros

  • src
    [in] BSTR para anexar ao objeto.

Comentários

Não passar uma cadeia de caracteres comum de largo- caractere para este método.O compilador não pode capturar o erro e erros de tempo de execução ocorrerão.

ObservaçãoObservação

Este método afirmará se m_str éNULOnão-.

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: atlbase.h

Consulte também

Referência

CComBSTR - classe

CComBSTR::Detach

CComBSTR::operator =