在 C++ 中构造左填充 NULL 固定长度字符数组的最高效方法是什么?
如果你有类似的东西:
char buf[10];
并且需要创建一个类似的函数:
void pad(char* dest, const char* src, size_t destlen, size_t srclen);
那么 pad(dest, "hello", 10, 5)
将导致 "hello\0\0\0\0 \0"
我不确定最有效的方法是使用 gcc 4.x:
snprintf
然后 bzero
?
operator<<
与 setfill
和朋友然后 memcpy
?
对于这种特殊情况,性能非常重要。提前致谢!
If you have something like:
char buf[10];
and need to create a function like:
void pad(char* dest, const char* src, size_t destlen, size_t srclen);
so pad(dest, "hello", 10, 5)
will result in "hello\0\0\0\0\0"
I'm not sure what the most efficient way of doing this is using gcc 4.x:
snprintf
then bzero
?
operator<<
with setfill
and friends then memcpy
?
Performance is important for this particular case. Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
memcpy
后面跟着memset
怎么样?How about
memcpy
followed bymemset
?您可以使用
memcpy
和memset
就像当然您还应该检查是否可以将
src
放入dst
You can use
memcpy
andmemset
likeof course you should also check that you can fit
src
intodst