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 );

相關詞條

相關搜尋

熱門詞條

聯絡我們