CComBSTR::ByteLength
傳回的位元組數目 m_str的,不包含結束的 null 字元。
unsigned int ByteLength( ) const throw( );
傳回值
m_str 成員的長度 (以位元組為單位)。
備註
如果是, m_strNULL,則傳回 0。
範例
// string with 11 chars (22 bytes)
CComBSTR bstrTemp(OLESTR("Hello World"));
unsigned int len = bstrTemp.ByteLength();
ATLASSERT(len == 22);
需求
Header: atlbase.h