程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> string中c_str(),data(),copy(p,n)函數的用法總結

string中c_str(),data(),copy(p,n)函數的用法總結

編輯:關於C++

string中c_str(),data(),copy(p,n)函數的用法總結。本站提示廣大學習愛好者:(string中c_str(),data(),copy(p,n)函數的用法總結)文章只能為提供參考,不一定能成為您想要的結果。以下是string中c_str(),data(),copy(p,n)函數的用法總結正文


尺度庫的string類供給了3個成員函數來從一個string獲得c類型的字符數組:c_str()、data()、copy(p,n)。

1. c_str():生成一個const char*指針,指向以空字符終止的數組。

注:
①這個數組的數據是暫時的,當有一個轉變這些數據的成員函數被挪用後,個中的數據就會掉效。是以要末現用先轉換,要末把它的數據復制到用戶本身可以治理的內存中。留意。看下例:

const char* c;
string s="1234";
c = s.c_str(); 
cout<<c<<endl; //輸入:1234
s="abcd";
cout<<c<<endl; //輸入:abcd

下面假如持續用c指針的話,招致的毛病將是弗成想象的。就如:1234變成abcd

其實下面的c = s.c_str(); 不是一個好習氣。既然c指針指向的內容輕易掉效,我們就應當依照下面的辦法,那怎樣把數據復制出來呢?這就要用到strcpy等函數(推舉)。

//const char* c; //①
//char* c;       //②
//char c[20]; 
char* c=new char[20];
string s="1234";
//c = s.c_str(); 
strcpy(c,s.c_str());
cout<<c<<endl; //輸入:1234
s="abcd";
cout<<c<<endl; //輸入:1234

留意:不克不及再像下面一樣①所示了,const還怎樣向外面寫入值啊;也不克不及②所示,應用了未初始化的部分變量“c”,運轉會失足的 。

② c_str()前往一個客戶法式可讀弗成改的指向字符數組的指針,不須要手動釋放或刪除這個指針。

2. data():與c_str()相似,然則前往的數組不以空字符終止。

3. copy(p,n,size_type _Off = 0):從string類型對象中至少復制n個字符到字符指針p指向的空間中。默許從首字符開端,然則也能夠指定,開端的地位(記住從0開端)。前往真正從對象中復制的字符。------用戶要確保p指向的空間足夠保留n個字符。

// basic_string_copy.cpp
// compile with: /EHsc /W3
#include <string>
#include <iostream>

int main( )
{
    using namespace std;
    string str1 ( "1234567890" );
    basic_string <char>::iterator str_Iter;
    char array1 [ 20 ] = { 0 };
    char array2 [ 10 ] = { 0 };
    basic_string <char>:: pointer array1Ptr = array1;
    basic_string <char>:: value_type *array2Ptr = array2;

    cout << "The original string str1 is: ";
    for ( str_Iter = str1.begin( ); str_Iter != str1.end( ); str_Iter++ )
        cout << *str_Iter;
    cout << endl;

    basic_string <char>:: size_type nArray1;
    // Note: string::copy is potentially unsafe, consider
    // using string::_Copy_s instead.
    nArray1 = str1.copy ( array1Ptr , 12 );  // C4996
    cout << "The number of copied characters in array1 is: "
        << nArray1 << endl;
    cout << "The copied characters array1 is: " << array1Ptr << endl;

    basic_string <char>:: size_type nArray2;
    // Note: string::copy is potentially unsafe, consider
    // using string::_Copy_s instead.
    nArray2 = str1.copy ( array2Ptr , 5 , 6  );  // C4996
    cout << "The number of copied characters in array2 is: "
        << nArray2 << endl;
    cout << "The copied characters array2 is: " << array2Ptr << endl;

    ////留意必定要使array3有足夠的空間
    //char array3[5]={0};
    //basic_string<char>::pointer array3Ptr=array3;
    //basic_string<char>::size_type nArray3;
    //nArray3 = str1.copy(array3,9); //毛病!!!!
    //cout<<"The number of copied characters in array3 is: "
    //  <<nArray3<<endl;
    //cout<<"The copied characters array3 is: "<<array3Ptr<<endl;
}

下面最初正文失落的部門,固然編譯沒有毛病,然則運轉時會發生毛病:Stack around the variable 'array3' was corrupted.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved