zoukankan      html  css  js  c++  java
  • std::strncpy 简介

    std::strncpy

     
    Defined in header <cstring>

     char *strncpy( char *dest, const char *src, std::size_t count );


    If count is reached before the entire string src was copied, the resulting character array is not null-terminated.Copies at most count characters of the byte string pointed to by src (including the terminating null character) to character array pointed to by dest.

    If, after copying the terminating null character from srccount is not reached, additional null characters are written todest until the total of count characters have been written.

    If the strings overlap, the behavior is undefined.

    Parameters

    dest    pointer to the character array to copy to

    src    pointer to the byte string to copy from

    count    maximum number of characters to copy

    Return value

    dest

    Example

     1 #include <iostream>
     2 #include <cstring>
     3 using namespace std;
     4 
     5 int main ()
     6 {
     7   char str1[]= "To be or not to be";
     8   char str2[6];
     9   strncpy (str2,str1,5);
    10   str2[5]='\0';
    11   cout<<str2;
    12   return 0;
    13 }

    Output:

    1  To be
    **************************************************************
    我喜欢程序员,他们单纯、固执、容易体会到成就感;面对困难,能够不休不眠;面对压力,能够迎接挑战。他们也会感到困惑与傍徨,但每个程序员的心中都有一个比尔盖茨或是乔布斯的梦想,用智慧把属于自己的事业开创。其实我是一个程序员
    [=.=]
  • 相关阅读:
    mac下通过复制启动两个tomcat
    搭建一个redis集群
    ubantu系统下永久修改主机名
    民宿项目知识_截取最后一个逗号
    民宿项目知识_string判断是否为空
    民宿项目知识_enum
    民宿项目中的知识点_动态删除tr
    笔记:迁移来自xinlang的笔记
    SVN使用笔记
    iOS性能优化笔记
  • 原文地址:https://www.cnblogs.com/kevinGaoblog/p/2601293.html
Copyright © 2011-2022 走看看