zoukankan      html  css  js  c++  java
  • strncpy和memcpy

    strcpy strncpy

    memcpy

    #include <string.h>

    char *strncpy(char *restrict s1, const char *restrict s2, size_t n);

    DESCRIPTION       

    The  strncpy()  function shall copy not more than n bytes (bytes that follow a null byte are not copied) from the array pointed to by s2 to the array pointed to by s1.  If copying takes place between objects that overlap, the behavior is undefined.If the array pointed to by s2 is a string that is shorter than n bytes, null bytes shall be appended to the copy in the array pointed  to by s1, until n bytes in all are written.

    RETURN VALUE       

    The strncpy() function shall return s1; no return value is reserved to indicate an error.

    #include<string.h>
    int main(int agrn,char *agrc[])
    {
    char dest[1024] = {0};
    char *src="Hello,Wrold";
    strncpy(dest,src,
    sizeof(dest)-1);
    dest[
    1024-1] = 0;
    return 0;
    }


    SYNOPSIS       #include <string.h>
    void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
    DESCRIPTION       

    The  memcpy()  function  shall copy n bytes from the object pointed to by s2 into the object pointed to by s1. If copying takes place between objects that overlap, the behavior is undefined.

    RETURN VALUE       

    The memcpy() function shall return s1; no return value is reserved to indicate an error.

    #include<string.h>
    #include
    <iostream>
    using namespace std;
    struct Object
    {
    char name[255];
    void print()
    {
    cout
    <<"Name:"<<name;
    }
    };
    struct Test:public Object
    {
    int id;
    short sex;
    };
    int main(int agrn,char*agrc[])
    {
    Test obj1;
    strncpy(obj1.name,
    "Liuda",sizeof(obj1.name));
    obj1.name[
    sizeof(obj1.name)-1] = 0;
    obj1.id
    = 123;
    obj1.sex
    = 0;
    Test obj2;
    memcpy(
    &obj2,&obj1,sizeof(obj1));
    obj2.print();
    return 0;
    }

    在来说说他们的区别。

    strncpy复制n个,但是,他毕竟是字符串函数,所以碰到\0,就不复制了。

    memcpy就不是,他一定会复制n个字节的数据。

  • 相关阅读:
    java里的分支语句--程序运行流程的分类(顺序结构,分支结构,循环结构)
    Java里的构造函数(构造方法)
    Java里this的作用和用法
    JAVA中的重载和重写
    从键盘接收字符类型的数据并实现剪刀石头布的规则
    使用Notepad++编码编译时报错(已解决?)
    云就是网络,云计算呢
    使用JavaMail创建邮件和发送邮件
    mysql锁机制
    java中几种常用的设计模式
  • 原文地址:https://www.cnblogs.com/xloogson/p/2097064.html
Copyright © 2011-2022 走看看