在C中使用strcpy函数的优点
void main()
{
char s[100]="hello";
char *t;
t=(char*)malloc(100);
strcpy(t,s);
}
或者,我们可以将 s
分配给 t
,如下所示:t=s;
。使用替代方案的缺点是什么?
void main()
{
char s[100]="hello";
char *t;
t=(char*)malloc(100);
strcpy(t,s);
}
Alternatively, we could assign s
to t
like this: t=s;
. What is the disadvantage of using the alternative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当使用像 t = s 这样的简单赋值时,您实际上并没有复制字符串,而是使用两个不同的名称引用同一个字符串。
When using a simple assignment like t = s you are not actually copying the string, you are referring to the same string using two different names.
如果您分配
t=s
,应用于t
指向的内存块的每个更改都会影响s
,这可能不是您想要的。另外,您可能还想看看这篇文章。
If you assign
t=s
every change applied to the memory block pointed byt
will affect thes
which may not be what you want.Also, you might want to look at this post.
变量
t
的值是一个或多个连续char
的位置。当您执行t = s
时,您正在将 chars[0]
的位置复制到t
中(并替换s[0]
的旧值)来自malloc()
的 code>t)。t[0]
和s[0]
现在引用完全相同的字符 - 修改一个字符将通过另一个字符可见。当您使用
strcpy(t, s)
时,您是将实际字符从一个位置复制到另一个位置。前者就像把两个门牌号放在同一栋房子上。后者就像是对一所房子里的所有家具进行精确复制,然后将其放入第二所房子中。
The value of the variable
t
is the location of one or more contiguouschar
s. When you dot = s
, you are copying the location of the chars[0]
intot
(and replacing the old value oft
that came frommalloc()
).t[0]
ands[0]
now refer to exactly the same character - modifying one will be visible through the other.When you use
strcpy(t, s)
, you are copying the actual characters from one location to another.The former is like putting two house numbers on the same house. The latter is like making an exact replica of all the furniture in one house and placing it into the second.
strcpy()
函数用于将一个字符串复制到另一个字符串,您在这里误用了它。当使用指针时,您可以轻松地做到这一点,指针“t”获取字符串的基地址's',这就是指针的用途。另一方面,你的 strcpy 工作。你创建一个指针存储整个字符串。。
strcpy()
function is used to copy one string to another,you mis-used it here.When working with pointers you could have easily done it like,pointer 't' gets the base address of the string 's' and that is what pointers are for.On the other hand you the strcpy work.You make a pointer store THE WHOLE STRING..