今天因不正确的使用std::string,产生一个很难发觉的问题,搞了许久,mark一下。 原代码大概如下:
void func(char *buf, int len){
string s;
s.reserve(len);
memcpy((char *)&s[0], buf, len));
string t(s, 0, len);
}
发现t中的数据始终为空。 最后才明白,reserve函数没有更改string的size,也就是说s.size()==0, 后面其它字符串通过string的方法从s获取数据,由于size为零,都不能真正拷贝数据。 解决方法很简单,将reserve换成resize即可。可参考resize的源码:
610 template<typename _CharT, typename _Traits, typename _Alloc>
611 void
612 basic_string<_CharT, _Traits, _Alloc>::
613 resize(size_type __n, _CharT __c)
614 {
615 const size_type __size = this->size();
616 _M_check_length(__size, __n, "basic_string::resize");
617 if (__size < __n)
618 this->append(__n - __size, __c);
619 else if (__n < __size)
620 this->erase(__n);
621 // else nothing (in particular, avoid calling _M_mutate() unnecessarily.)
622 } // /usr/include/c++/4.1.0/bits/basic_string.tcc