• 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个字节的数据。

  • 相关阅读:
    zoj 3697(模拟+dp)
    hdu 2444(二分图最大匹配)
    基础建设者的悲歌
    ANDROID 常用音乐软件 歌曲存放位置
    Winform 类似于WINDOWS的选择文件夹对话框
    我听到过的一个精彩的软件纠错故事
    cs类文件中输出脚本的方法
    NeatUpload的安装使用
    asp.net获取系统已安装字体的方法
    (转载)你真的了解分层架构吗?——写给被PetShop"毒害"的朋友们
  • 原文地址:https://www.cnblogs.com/xloogson/p/2097064.html
Copyright © 2020-2023  润新知