c语⾔cstring作⽤,C语⾔cstring库的使⽤C语⾔
VC:CString⽤法整理(转载)
1.CString::IsEmpty
BOOL IsEmpty( ) const;
返回值:如果CString 对象的长度为0,则返回⾮零值;否则返回0。
说明:此成员函数⽤来测试⼀个CString 对象是否是空的。
⽰例:
下⾯的例⼦说明了如何使⽤CString::IsEmpty。
// CString::IsEmpty ⽰例
CString s;
ASSERT( s.IsEmpty() );
请参阅 CString::GetLength
2.CString::Left
CString Left( int nCount ) const;
throw( CMemoryException );
返回值:返回的字符串是前nCount个字符。
⽰例:
CString s( _T("abcdef") );
ASSERT( s.Left(2) == _T("ab") );
3.CString::LoadString
BOOL LoadString( UINT nID );
throw( CMemoryException );
返回值:如果加载资源成功则返回⾮零值;否则返回0。
nID ⼀个Windows 字符串资源ID。
说明: 此成员函数⽤来读取⼀个由nID 标识的Windows 字符串资源,并放⼊⼀个已有CString 对象中。
⽰例:
下⾯的例⼦说明了如何使⽤CString::LoadString。
// CString::LoadString ⽰例
#define IDS_FILENOTFOUND 1
CString s;
if (! s.LoadString( IDS_FILENOTFOUND ))
4.CString::MakeLower
void MakeLower( ); //改变字符的⼩写
const的作用
5.CString::MakeReverse
void MakeReverse( ); //字符倒置
6.CString::MakeUpper
void MakeUpper( ); //改变字符的⼤写
7.CString::Mid CString Mid( int nFirst ) const; CString Mid( int nFirst, int nCount ) const; nCount代表要提取的字符数, nFirst代表要提取的开始索引位置
⽰例: CString s( _T("abcdef") ); ASSERT( s.Mid( 2, 3 ) == _T("cde") );
8.CString::ReleaseBuffer
void ReleaseBuffer( int nNewLength = -1 );
参数:nNewLength
此字符串的以字符数表⽰的新长度,不计算结尾的空字符。如果这个字
符串是以空字符结尾的,则参数的缺省值-1 将把CString 的⼤⼩设置为
字符串的当前长度。
说明:
使⽤ReleaseBuffer 来结束对由GetBuffer 分配的缓冲区的使⽤。如果你知道缓
冲区中的字符串是以空字符结尾的,则可以省略nNewLength 参数。如果字符
串不是以空字符结尾的,则可以使⽤nNewLength 指定字符串的长度。在调⽤
ReleaseBuffer 或其它CString 操作之后,由GetBuffer 返回的地址是⽆效的。
⽰例:
下⾯的例⼦说明了如何使⽤CString::ReleaseBuffer。
// CString::ReleaseBuffer ⽰例
CString s;
s = "abc";
LPTSTR p = s.GetBuffer( 1024 );
strcpy(p, "abc"); // 直接使⽤该缓冲区
ASSERT( s.GetLength() == 3 ); // 字符串长度 = 3
s.ReleaseBuffer(); // 释放多余的内存,现
在p ⽆效。
ASSERT( s.GetLength() == 3 ); // 长度仍然是3
9.CString::Remove
int CString::Remove ( TCHAR ch );
返回值:返回从字符串中移⾛的字符数。如果字符串没有
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论