GetLength
数组的属性
getlength是数组的属性,获得数组的长度。参数为0或1。
程序特点
CFile::GetLength
virtual DWORD GetLength( ) const;
throw( CFileException );
Return Value
该文件的长度。
Remarks
获得当前字节文件的逻辑长度,而不是数量。
应用
Example
The following example demonstrates the use of CString::GetLength.
int GetLength( ) const;
返回值:返回字符串中的字节计数。
说明:
此成员函数用来获取这个CString对象中的字节计数。这个计数不包括结尾的空字符。
对于多字节字符集(MBCS),GetLength按每一个8位字符计数;即,在一个多字节字符中的开始和结尾字节被算作两个字节。
示例:下面的例子说明了如何使用CString::GetLength。
// CString::GetLength示例:
ASSERT( s.GetLength() == 6 );
参考资料
最新修订时间:2023-10-19 12:46
目录
概述
程序特点
应用
参考资料