gpt4 book ai didi

c++ - C/C++ 中的安全字符串复制

转载 作者:太空宇宙 更新时间:2023-11-03 10:35:05 25 4
gpt4 key购买 nike

我为 C 字符串编写了这个字符串复制例程。它应该表现得像 strlcpy,即 - 如果大小 > 0,则 null 终止目标,并返回源字符串的长度。

但是我也希望函数在源指针或目标指针为空时失败,并以某种方式将此通知给调用者。但我想不出一种非常优雅的方法来做到这一点。现在我发送两个负值作为大小来表示源指针或目标指针指向 null。因此我将返回类型从 size_t 更改为有符号整数,我对这个接口(interface)不满意。什么是更好的界面?

  #include <cstddef> // size_t
#include <cstdint> // 32 bit int

const std::int32_t SRC_NULL = -1;
const std::int32_t DST_NULL = -2;

std::int32_t CopyStringn (char *dest, const char *src, std::size_t size) {
const char* temp (src);
if (temp == NULL)
return SRC_NULL;
if (dest == NULL)
return DST_NULL;
while (*temp) {
if (size > 1) {
*dest++ = *temp;
--size;
}
++temp;
}

if (size)
*dest = '\0';

return static_cast<std::int32_t> (temp - src); // Length does not include null
}

最佳答案

在 C++ 中,您可以抛出异常。

关于c++ - C/C++ 中的安全字符串复制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5240162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com