小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

VC++中的string

 清風(fēng)和諧 2011-09-06

在VC++中使用string時(shí)必須注意以下事項(xiàng): 

1.string是一個(gè)類(lèi),而不是一個(gè)系統(tǒng)變量類(lèi)型;

2.使用時(shí)可以看成為字符串變量類(lèi)型;

3.使用時(shí)必須包含string.h文件,但.h不能夠出現(xiàn),即#include <string> 

4.在我們實(shí)驗(yàn)室環(huán)境下使用時(shí),還必須聲明使用名空間,即using namespace std;

5.變量說(shuō)明:string str1;  可視為將str1定義為一個(gè)字符串變量,實(shí)際上str1是一個(gè)類(lèi)string定義的對(duì)象。

6.在編輯時(shí)當(dāng)鍵入string時(shí),不會(huì)像鍵入int后立刻變?yōu)樗{(lán)色。

 

c++ string 類(lèi)基本用法樣例

#include <string>    //  使用 string 類(lèi)時(shí)須包含這個(gè)文件
#include <iostream>

using namespace std;

int main()
{
    string str1;
  
    //  輸入與輸出
    cout << "輸入字符串 str1" << endl;
    cin >> str1; getchar();
    cout << str1 << endl << endl << endl;
   
    //  一行行讀取
    cout << "輸入字符串 str1" << endl;
    getline( cin, str1 );
    cout << str1 << endl;

    //  與 c字符轉(zhuǎn)換
    string str2("Hello World!"), str3;
    char   str4[50];

    cout << "輸入 C 字符串" << endl;
    scanf("%s",str4);
    str3= str4;

    cout << "str2 is " << str2 << endl;
    cout << "str3 is " << str3 << endl << endl << endl;

    //  求字符串的長(zhǎng)度
    string str5;
    cout << "輸入字符串 str5" << endl;
    cin >> str5;
    int   len= str5.size();
    cout << "字符串 str5的長(zhǎng)度為" << len << endl << endl << endl;

    //  遍歷字符串例子
    string str6;
    cout << "輸入字符串 str6" << endl;
    cin >> str6;
    int i;
    for( i= 0; i< str6.size(); ++i )
    cout << str6[i];
    cout << endl << endl;

    //  比較兩個(gè)字符串   比較規(guī)則同 c字符串比較規(guī)則
    string str7, str8;
    cout << "輸入字符串 str7, str8 , 中間用空格格開(kāi)" << endl;
    cin >> str7 >> str8;

    if( str7< str8 ) cout << str7 << "  小于 " << str8 << endl;
    else if( str7> str8 ) cout << str7 << "  大于 " << str8 << endl;
    else cout << str7 << "  等于 " << str8 << endl;
   
   
    //  字符串與字符相加
    string str9= "Darren";
    char ch1= 'a', ch2= 'b';
    str9= str9+ ch1; cout << str9 << endl << endl;
    str9= ch2+ str9; cout << str9 << endl << endl << endl;
   
    //  字符串與字符串相加
    string str10= "Acm", str11= "ICPC";
    str10.append( str11 );
    cout << str10 << endl << endl;
   
    //  字符串是否包含子串  如果包含則返回子串在目標(biāo)串中第一次出現(xiàn)的位置
    string str12= "I am a student", str13= "student", str14= "aaaaaaa";
    if( str12.find( str13 )!= -1 )  cout << "Find " << str13 << endl;
    if( str12.find( str14 )== -1 )  cout << "Not Find  " << str14 << endl;
   
    //  轉(zhuǎn)換成 c_字符串
    string str15= "Hello World";
    printf("%s\n", str15.c_str() );
    
    system("pause");

    return 0;
}

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多