zoukankan      html  css  js  c++  java
  • strcpy_s与strcpy的比較

     
    strcpy_s和strcpy()函数的功能差点儿是一样的。strcpy函数,就象gets函数一样,它没有方法来保证有效的缓冲区尺寸,所以它仅仅能假定缓冲足够大来容纳要拷贝的字符串。在程序执行时,这将导致不可预料的行为。用strcpy_s就能够避免这些不可预料的行为。
    这个函数用两个參数、三个參数都能够,仅仅要能够保证缓冲区大小。
    三个參数时:
    errno_t strcpy_s(
    char *strDestination,
    size_t numberOfElements,
    const char *strSource
    );
    两个參数时:
    errno_t strcpy_s(
    char (&strDestination)[size],
    const char *strSource
    ); // C++ only

    样例:
    #include<iostream>
    #include<cstring>
    using namespace std;

    void Test(void)
    {
    char *str1=NULL;
    str1=new char[20];
    char str[7];
    strcpy_s(str1,20,"hello world");//三个參数
    strcpy_s(str,"hello");//两个參数但假设:char *str=new char[7];会出错:提示不支持两个參数
    cout<<"strlen(str1):"<<strlen(str1)<<endl<<"strlen(str):"<<strlen(str)<<endl;
    printf(str1);
    printf(" ");
    cout<<str<<endl;
    }

    int main()
    {
    Test();
    return 0;
    }
    #include<iostream>
    #include<string.h>
    using namespace std;

    void Test(void)
    {
    char *str1=NULL;
    str1=new char[20];
    char str[7];
    strcpy_s(str1,20,"hello world");//三个參数
    strcpy_s(str,"hello");//两个參数但假设:char *str=new char[7];会出错:提示不支持两个參数
    cout<<"strlen(str1):"<<strlen(str1)<<endl<<"strlen(str):"<<strlen(str)<<endl;
    printf(str1);
    printf(" ");
    cout<<str<<endl;
    }

    int main()
    {
    Test();
    return 0;
    }

    输出为:
    strlen(str1): 11        //另外要注意:strlen(str1)是计算字符串的长度,不包含字符串末尾的“”!!!
    strlen(str): 5
    hello world
    hello
  • 相关阅读:
    Windows Phone 的控件倾斜效果
    在framework4.0 3.5中反序列化 解析JSON
    PhpStorm2.0、3.0,5.0注册码到2112年
    Windows Phone(wp7)系统长按的秘密
    配置ethereal编译环境
    复习C++:引用的一些用法
    转载
    Stay hungry,Stay foolish
    C++:继承的一点注意事项
    纯虚函数
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/3857983.html
Copyright © 2011-2022 走看看