经典的string 函数库学习资料

源代码在线查看: crc32.cpp

软件大小: 59 K
上传用户: a22aa11a
关键词: string 函数库
下载地址: 免注册下载 普通下载 VIP

相关代码

				/**				 * @file crc32.cpp				 * @brief 字符串的包装,crc32校验				 * @author 泥偶				 * @since  2003-09-27				 * @date   2003-09-27				 */								#include "xstring.hpp"								namespace x				{				    namespace				    {				        #include "crc32.c"				    }								//----------------------------------------------------------------------------				    /**				    生成字符串循环冗余校验多项式的和。这通常用来在数据传输过程中验证数据的有效				    性。								    @code				  * xstring str = "The quick brown fox jumped over the lazy dog.";				  * unsigned int checksum = str.crc32();				  * cout 				    @endcode								    @see md5() sha1()				     */				    unsigned int xstring::crc32(void) const				    {				        return x::crc32(0, this->data(), this->size());				    }				}   // namespace x							

相关资源