C++博客 :: 首页 :: 联系 :: 聚合  :: 管理
  117 Posts :: 2 Stories :: 61 Comments :: 0 Trackbacks

常用链接

留言簿(8)

搜索

  •  

最新评论

阅读排行榜

评论排行榜

第一个程序:string与char[]数组的对比。

#include "stdafx.h"
#include 
<iostream>
#include 
<string>    //make string class available
using namespace std;
int main(int argc, char* argv[])
{
    
char charr1[20];
    
char charr2[20]="jaguar";
    
string str1;
    
string str2="panther";

    cout
<<"Enter a kind of feline: ";
    cin
>>charr1;
    cout
<<"Enter another kind of feline: ";
    cin
>>str1;
    cout
<<"Here are som felines:\n";
    cout
<<charr1<<" "<<charr2<<" "<<str1<<" "<<str2<<endl;
    cout
<<"The third letter in "<<charr2<<" is "<<charr2[2]<<endl;
    cout
<<"The third letter in "<<str2<<" is "<<str2[2]<<endl;
    
return 0;
}


第二个程序:赋值、拼接和附加

#include "stdafx.h"
#include 
<iostream>
#include 
<string>
using namespace std;
int main(int argc, char* argv[])
{
    
string s1="penguin";
    
string s2,s3;
    cout
<<"You can assign one string object to another: s2=s1\n";
    s2
=s1;
    cout
<<"s1: "<<s1<<", s2: "<<s2<<endl;
    cout
<<"You can assign a C-style string to a string object.\n";
    cout
<<"s2=\"buzzard\"\n";
    s2
="buzzard";
    cout
<<"s2: "<<s2<<endl;
    cout
<<"You can concatenate strings: s3=s1+s2\n";
    s3
=s1+s2;
    cout
<<"s3: "<<s3<<endl;
    cout
<<"You can append strings.\n";
    s1
+=s2;
    cout
<<"s1+=s2 yields s1 = "<<s1<<endl;
    s2
+=" for a day";
    cout
<<"s2 += \" for a day\" yields s2 = "<<s2<<endl;
    
return 0;
}


第三个程序:string对象的技术和用于字符数组的技术的对比

#include "stdafx.h"
#include 
<iostream>
#include 
<string>    //make string class available
#include <cstring>    //C-style string library
using namespace std;
int main(int argc, char* argv[])
{
    
char charr1[20];
    
char charr2[20]="jaguar";
    
string str1;
    
string str2="panther";

    
//assignment for string objects and character arrays
    str1=str2;    //copy str2 to str1
    strcpy(charr1,charr2);    //copy charr2 to charr1

    
//appending for string objects and character arrays
    str1 +=" paste";    //add paste to end of str1
    strcat(charr1," juice");    //add juice to end of charr1

    
//finding the length of a string object and a C-style string
    int len1=str1.size();    //obtain length of str1
    int len2=strlen(charr1);    //obtain lenght of charr1
    cout<<"The string \""<<str1<<"\" contains "<<len1<<" characters.\n";
    cout
<<"The string \""<<charr1<<"\" contains "<<len2<<" characters.\n";

    
return 0;
}


第四个程序,字符串比较问题

#include "stdafx.h"
#include 
<iostream>
#include 
<string>
using namespace std;
int main(int argc, char* argv[])
{
    
string word="?ate";

    
for(char ch='a';word!="mate";ch++)
    
{
        cout
<<word<<endl;
        word[
0]=ch;
    }

    cout
<<"After loop ends,word is "<<word<<endl;
    
return 0;
}

posted on 2010-02-05 21:12 烟皑 阅读(259) 评论(0)  编辑 收藏 引用 所属分类: C++ primer plus学习笔记

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理