- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想用下面的代码复制字符串,但它没有复制'\0'。
void copyString(char *to, char *from)
{
do{
*to++ = *from++;
}while(*from);
}
int main(void)
{
char to[50];
char from[] = "text2copy";
copyString(to, from);
printf("%s", to);
}
这是代码的输出:
text2copyÇ■ ║kvu¡lvu
每次我重新运行代码时,text2copy 之后的字符都会发生变化,所以 while(*from) 工作正常,但会复制一些随机的东西而不是 '\0'。
text2copyÖ■ ║kvu¡lvu
text2copy╨■ ║kvu¡lvu
text2copy╡■ ║kvu¡lvu
//etc
为什么会这样?
最佳答案
问题是您永远不会复制字符串末尾的 '\0'
字符。要了解为什么要考虑这一点:
传入的字符串是一个大小正好适合数据的常量字符串:
char from[] = "text2copy";
在内存中是这样的:
----+----+----+----+----+----+----+----+----+----+----+---- other memory | t | e | x | t | 2 | c | o | p | y | \0 | other memory ----+----+----+----+----+----+----+----+----+----+----+---- ^ from
Now let's imagine that you have done the loop several times already and you are at the top of the loop and from
is pointing to the 'y'
character in text2copy:
----+----+----+----+----+----+----+----+----+----+----+---- other memory | t | e | x | t | 2 | c | o | p | y | \0 | other memory ----+----+----+----+----+----+----+----+----+----+----+---- ^ from
The computer executes *to++ = *from++;
which copies the 'y'
character to to
and then increments both to
and from
. Now the memory looks like this:
----+----+----+----+----+----+----+----+----+----+----+---- other memory | t | e | x | t | 2 | c | o | p | y | \0 | other memory ----+----+----+----+----+----+----+----+----+----+----+---- ^ from
The computer executes } while(*from);
and realizes that *from
is false because it points to the '\0'
character at the end of the string so the loop ends and the '\0'
character is never copied.
Now you might think this would fix it:
void copyString(char *to, char *from)
{
do{
*to++ = *from++;
} while(*from);
*to = *from; // copy the \0 character
}
它确实复制了 '\0'
字符,但仍然存在问题。该代码甚至存在更根本的缺陷,因为正如@JonathanLeffler 在评论中所说,对于空字符串,您可以查看字符串末尾之后的内存内容,并且因为它没有分配给您访问它会导致未定义的行为:
----+----+---- other memory | \0 | other memory ----+----+---- ^ from
The computer executes *to++ = *from++;
which copies the '\0'
character to to
and then increments both to
and from
which makes from point to memory you don't own:
----+----+---- other memory | \0 | other memory ----+----+---- ^ from
Now the computer executes }while(*from);
and accesses memory that isn't yours. You can point from
anywhere with no problem, but dereferencing from
when it points to memory that isn't yours is undefined behaviour.
The example I made in the comments suggests saving the value copied into a temporary variable:
void copyString(char *to, char *from)
{
int test;
do{
test = (*to++ = *from++); // save the value copied
} while(test);
}
我建议采用这种特定方法的原因是要向您表明问题出在您正在测试的内容上,而不是事后测试循环条件。如果您保存复制的值然后稍后测试该保存的值,则该字符在测试之前被复制(因此\0 被复制)并且您不从递增的指针中读取(因此没有未定义的行为)
但@JonathanLeffler 在他的评论中的例子更短、更容易理解,也更地道。它在不声明命名临时变量的情况下做同样的事情:
void copyString(char *to, char *from)
{
while ((*to++ = *from++) != '\0')
;
}
代码首先复制字符,然后测试复制的值(因此 '\0'
将被复制)但是递增的指针永远不会取消引用(因此没有未定义的行为) .
关于c - 为什么我不能以这种方式复制终止空值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53734672/
我一直在阅读有关汇编函数的内容,但对于是使用进入和退出还是仅使用调用/返回指令来快速执行,我感到很困惑。一种方式快而另一种方式更小吗?例如,在不内联函数的情况下,在汇编中执行此操作的最快(stdcal
我正在处理一个元组列表,如下所示: res = [('stori', 'JJ'), ('man', 'NN'), ('unnatur', 'JJ'), ('feel', 'NN'), ('pig',
最近我一直在做很多网络或 IO 绑定(bind)操作,使用线程有助于加快代码速度。我注意到我一直在一遍又一遍地编写这样的代码: threads = [] for machine, user, data
假设我有一个名为 user_stats 的资源,其中包含用户拥有的帖子、评论、喜欢和关注者的数量。是否有一种 RESTful 方式只询问该统计数据的一部分(即,对于 user_stats/3,请告诉我
我有一个简单的 api,它的工作原理是这样的: 用户创建一个请求 ( POST /requests ) 另一个用户检索所有请求 ( GET /requests ) 然后向请求添加报价 ( POST /
考虑以下 CDK Python 中的示例(对于这个问题,不需要 AWS 知识,这应该对基本上任何构建器模式都有效,我只是在这个示例中使用 CDK,因为我使用这个库遇到了这个问题。): from aws
Scala 中管理对象池的首选方法是什么? 我需要单线程创建和删除大规模对象(不需要同步)。在 C++ 中,我使用了静态对象数组。 在 Scala 中处理它的惯用和有效方法是什么? 最佳答案 我会把它
我有一个带有一些内置方法的类。这是该类的抽象示例: class Foo: def __init__(self): self.a = 0 self.b = 0
返回和检查方法执行的 Pythonic 方式 我目前在 python 代码中使用 golang 编码风格,决定移动 pythonic 方式 例子: import sys from typing imp
我正在开发一个 RESTful API。其中一个 URL 允许调用者通过 id 请求特定人员的记录。 返回该 id 不存在的记录的常规值是什么?服务器是否应该发回一个空对象或者一个 404,或者其他什
我正在使用 pathlib.Path() 检查文件是否存在,并使用 rasterio 将其作为图像打开. filename = pathlib.Path("./my_file-name.tif") 但
我正在寻找一种 Pythonic 方式来从列表和字典创建嵌套字典。以下两个语句产生相同的结果: a = [3, 4] b = {'a': 1, 'b': 2} c = dict(zip(b, a))
我有一个正在操裁剪理设备的脚本。设备有时会发生物理故障,当它发生时,我想重置设备并继续执行脚本。我有这个: while True: do_device_control() device
做组合别名的最pythonic和正确的方法是什么? 这是一个假设的场景: class House: def cleanup(self, arg1, arg2, kwarg1=False):
我正在开发一个小型客户端服务器程序来收集订单。我想以“REST(ful)方式”来做到这一点。 我想做的是: 收集所有订单行(产品和数量)并将完整订单发送到服务器 目前我看到有两种选择: 将每个订单行发
我知道在 Groovy 中您可以使用字符串调用类/对象上的方法。例如: Foo."get"(1) /* or */ String meth = "get" Foo."$meth"(1) 有没有办法
在 ECMAScript6 中,您可以使用扩展运算符来解构这样的对象 const {a, ...rest} = obj; 它将 obj 浅拷贝到 rest,不带属性 a。 有没有一种干净的方法可以在
我有几个函数返回数字或None。我希望我的包装函数返回第一个不是 None 的结果。除了下面的方法之外,还有其他方法吗? def func1(): return None def func2(
假设我想设计一个 REST api 来讨论歌曲、专辑和艺术家(实际上我就是这样做的,就像我之前的 1312414 个人一样)。 歌曲资源始终与其所属专辑相关联。相反,专辑资源与其包含的所有歌曲相关联。
这是我认为必须经常出现的问题,但我一直无法找到一个好的解决方案。假设我有一个函数,它可以作为参数传递一个开放资源(如文件或数据库连接对象),或者需要自己创建一个。如果函数需要自己打开文件,最佳实践通常
我是一名优秀的程序员,十分优秀!