C/C++教程

C++练习12 字符串成员函数的使用

本文主要是介绍C++练习12 字符串成员函数的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 1 #include <iostream>
 2 #include <string>
 3 using namespace std;
 4 int main()
 5 {
 6     string str;//创建string类的对象 str
 7     if (str.empty())//empty()为成员函数,empty()函数用于判断当前字符串是否为空值。
 8         cout << "str is NULL." << ",length=" << str.length() << endl;//length()为成员函数, length()用于显示当前字符串的长度。
 9     else
10         cout << "str is not NULL." << endl;
11     str = str.append("abcdefg");//append()函数为对象str添加字符串“abcdefg”
12     cout << "str is " << str << ",size=" << str.size() << endl;//size()函数显示当前字符串的大小
13     const char* p = str.c_str();//c_str()函数返回一个指向正规p字符串的指针, 内容与本string串相同.
14     cout << "p=" << p << endl;
15     cout << "find:" << str.find("de", 0) << endl;
16     cout << "find:" << str.find("de", 4) << endl;
17     string str1 = str.insert(4, "123");//insert(4, "123")是在str第四个字符的位置添加123,再将其赋予给str1
18     cout << str1 << endl;
19     system("pause");
20     return 0;
21 }

 

这篇关于C++练习12 字符串成员函数的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!