共用方式為


CComBSTR::CopyTo

將參數指派並傳回 m_str 的複本。

HRESULT CopyTo( 
   BSTR* pbstr  
) throw( ); 
HRESULT CopyTo( 
   VARIANT* pvarDest  
) throw( );

參數

  • pbstr
    [in] 傳回字串是由這個方法所配置 BSTR 的位址。

  • pvarDest
    [in] 傳回字串是由這個方法所配置 VARIANT 的位址。

傳回值

指出複製的成功或失敗的標準 HRESULT 值。

備註

在呼叫這個方法之後, VARIANT 所指向的 pvarDest 的型別將是 VT_BSTR

範例

CComBSTR m_bstrURL; // BSTR representing a URL 

// get_URL is the get method for the URL property. 
STDMETHOD(get_URL)(BSTR* pstrURL)
{
   // Make a copy of m_bstrURL and return it via pstrURL 
   return m_bstrURL.CopyTo(pstrURL);
}

需求

Header: atlbase.h

請參閱

參考

CComBSTR 類別

CComBSTR::Copy

CComBSTR::operator =