GetLength
生活百科 2023-01-17 20:00生活百科www.aizhengw.cn
GetLength
CFile::GetLength
virtual DWORD GetLength( ) const;
throw( CFileException );
Return Value
该档案的长度。
Remarks
获得当前位元组档案的逻辑长度,而不是数量。
Example
The following example demonstrates the use of CString::GetLength.
// example for CString::GetLengthCString s( "abcdef" );ASSERT( s.GetLength() == 6 );CString::GetLength
int GetLength( ) const;
返回值返回字元串中的位元组计数。
说明
此成员函式用来获取这个CString对象中的位元组计数。这个计数不包括结尾的空字元。
对于多位元组字元集(MBCS),GetLength按每一个8位字元计数;即,在一个多位元组字元中的开始和结尾位元组被算作两个位元组。
示例下面的例子说明了如何使用CString::GetLength。
// CString::GetLength示例
CString s( "abcdef" );
ASSERT( s.GetLength() == 6 );
上一篇:首次公开募股(IPO)
下一篇:Benjamin L. Newmark