简化构造函数原型如下(注意,为了简便,把模板中最后一个默认参数省略了): 支持六种关系运算符(==、!=、>、>=、<、<=),其采用字典排序策略(与C中字符串比较策略完全一样)。这六个关系运算符是非成员的重载运算符。而这些运算符都支持三种操作数组合:string op string、string op const char*、const char* op string(其中op是前面六种关系运算符中任意一种)。解释:提供运算符的三种重载版本主要是从效率角度考虑的,其避免了临时string对象的产生。 另外,string类还提供了各种重载版本的成员函数compare来比较,简化函数原型为: 针对string类提供了非成员重载operator+,支持string对象之间、string对象与const char*对象之间、string对象与char对象之间相加,并且operator + 两边的操作数的任意顺序都支持。简化函数原型如下: 字符串赋值有两种方式:一是利用成员重载运算符operator=;另外就是使用成员重载函数assign可以更加灵活地处理。这里只提供简化函数原型供参考: 字符串追加同样有两种方式:一是operator+=;另外就是成员函数append。简化函数原型如下: 获取某个下标处的字符:一是用at成员函数;另外就是用operator[]。获取子串,可以用成员函数c_str及substr,还有成员函数data和copy。简化函数原型如下: 注意:若at函数的参数pos无效,则抛出异常out_of_range;但如果operator[]的参数pos无效,则属于未定义行为。所以at比operator[]更加安全。 其中,copy返回实际拷贝的字符数。 成员函数replace实现替换某个子串。简化函数原型如下: 这里,可能需要用到这几个函数得到整个字符序列: 成员函数insert实现在某点处插入字符串。简化函数原型如下: 注意:insert函数是在插入点(p0 or it)之前插入字符串。 成员函数 erase实现删除某个子串。简化函数原型如下: 如果指定删除的字符个数比字符串中从指定位置开始的剩余字符个数还多,那么只有这些字符被删除。 查找子串有六种方式,分别有五类成员函数与之应。 · find 查找控制字符序列中与操作字符序列匹配的第一个子串,并返回子串的起始位置; · rfind 查找控制字符序列中与操作字符序列匹配的最后一个子串,并返回该子串的起始位置,相当于逆向查找; · find_first_of 查找控制字符序列中第一个出现在操作字符序列中的字符的位置,并返回该位置; · find_first_not_of查找控制字符序列中第一个不出现在操作字符序列中的字符的位置,并返回该位置; · find_last_of 查找控制字符序列中最后一个出现在操作序列中的字符的位置,并返回该位置; · find_last_not_of 查找控制字符序列中最后一个不出现在操作字符序列中的字符位置,并返回该位置; 如果这些函数查找失败,则返回string::npos。 其中,find函数的简化函数原型如下: 另外的五个函数的函数原型和find的函数原型类型类似,区别在于,如果是是逆序查找的函数(rfind, find_last_of, find_last_not_of),则pos参数默认值为npos。 其中,istream& getline(istream& is, string& str); 相当于 istream& getline(istream& is, string& str, char delim = '\n'); getline函数在下列三种情况下结束提取: 1)遇到文件结束符; 2)遇到分隔符delim。如果第一个就是分隔符,str为空串(并且该分隔符被从流中读出丢弃),但istream测试为真; 3)如果已经提取了istream.max_size()个字符,那么提取结束,并且将调用istream.setstate(ios_base::failbit),即此时返回的istream测试为假。 如果函数没有提取到字符(包括分隔符),那么将调用istream.setstate(failbit),此时测试istream为假。 默认情况下, istream& operator>>(istream& is, const string& str);在下列三种情况下结束提取: 例如,看看下面的循环: 要中止上面的循环应该用文件结束符:
string类对象的构造
1: explicit basic_string();
2: string(const char *s);
3: string(const char *s, size_type n);
4: string(const string& str);
5: string(const string& str, size_type pos, size_type n);
6: string(size_type n, E c);
7: string(const_iterator first, const_iterator last);
string对象的操作
字符串比较
1: int compare(const string& str) const;
2: int compare(size_type p0, size_type n0, const string& str);
3: int compare(size_type p0, size_type n0, const string& str, size_type pos, size_type n);
4: int compare(const char* s) const;
5: int compare(size_type p0, size_type n0, const char* s) const;
6: int compare(size_type p0, size_type n0, const char* s, size_type n) const;
字符串相加
1: string operator+ (const string& lhs, const string& rhs);
2: string operator+ (const string& lhs, const char *rhs);
3: string operator+ (const string& lhs, char rhs);
4: string operator+ (const char *lhs, const string& rhs);
5: string operator+ (char lhs, const string& rhs);
字符串赋值
1: string& operator=(char c);
2: string& operator=(const char *s);
3: string& operator=(const string& rhs);
4: string& assign(const char *s);
5: string& assign(const char *s, size_type n);
6: string& assign(const string& str, size_type pos, size_type n);
7: string& assign(const string& str);
8: string& assign(size_type n, char c);
9: string& assign(const_iterator first, const_iterator last);
字符串追加
1: string& operator+=(char c);
2: string& operator+=(const char *s);
3: string& operator+=(const string& rhs);
4: string& append(const char *s);
5: string& append(const char *s, size_type n);
6: string& append(const string& str, size_type pos, size_type n);
7: string& append(const string& str);
8: string& append(size_type n, char c);
9: string& append(const_iterator first, const_iterator last);
读取子串
1: reference operator[](size_type pos);
2: const_reference operator[](size_type pos) const;
3: reference at(size_type pos);
4: const_reference at(size_type pos) const;
5:
6: const char *c_str() const;
7: const char *data() const;
8: string substr(size_type pos = 0, size_type n = npos) const;
9: size_type copy(char *s, size_type n, size_type pos = 0) const;
替换子串
1: string& replace(size_type p0, size_type n0, const char *s);
2: string& replace(size_type p0, size_type n0, const char *s, size_type n);
3: string& replace(size_type p0, size_type n0, const string& str);
4: string& replace(size_type p0, size_type n0, const string& str, size_type pos, size_type n);
5: string& replace(size_type p0, size_type n0, size_type n, char c);
6: string& replace(iterator first0, iterator last0, const char *s);
7: string& replace(iterator first0, iterator last0, const char *s, size_type n);
8: string& replace(iterator first0, iterator last0, const string& str);
9: string& replace(iterator first0, iterator last0, size_type n, char c);
10: string& replace(iterator first0, iterator last0, const_iterator first, const_iterator last);
1: const_iterator begin() const;
2: iterator begin();
3: const_iterator end() const;
4: iterator end();
插入字符串
1: string& insert(size_type p0, const char *s);
2: string& insert(size_type p0, const char *s, size_type n);
3: string& insert(size_type p0, const string& str);
4: string& insert(size_type p0, const string& str, size_type pos, size_type n);
5: string& insert(size_type p0, size_type n, char c);
6: iterator insert(iterator it, char c);
7: void insert(iterator it, const_iterator first, const_iterator last);
8: void insert(iterator it, size_type n, char c);
删除子串
1: iterator erase(iterator first, iterator last);
2: iterator erase(iterator it);
3: string& erase(size_type p0 = 0, size_type n = npos);
查找子串
1: size_type find(char c, size_type pos = 0) const;
2: size_type find(const char *s, size_type pos = 0) const;
3: size_type find(const char *s, size_type pos, size_type n) const;
4: size_type find(const string& str, size_type pos = 0) const;
其它成员函数和友元函数
1: size_type capacity() const; // 返回当前字符串的存储空间大小>=size()
2: void reserve(size_type n = 0);// 预留n个元素的存储空间,保证capacity()>=n
3: bool empty() const; // 若字符串为空,返回true
4: size_type size() const; // 返回字符串长?
5: size_type length() const; // 等于size()
6: size_type max_size() const; //返回string类中字符串的最大长度
7: void resize(size_type n, char c = ' '); //若长度不够,则用c填充加长的部分;保证size()返回n
8: void swap(string& str); //两string对象交换,能在常数时间内完成(必须是使用相同allocator的两对象,这里都使用的默认的)
9:
10: // 其它非成员函数
11: istream& getline(istream& is, string& str);
12: istream& getline(istream& is, string& str, char delim);
13: ostream& operator<<(ostream& os, const string& str);
14: istream& operator>>(istream& is, const string& str);
1)遇到文件结束符;
2)遇到空白字符(空格、Tab、换行);
3)如果已经提取了is.max_size()个字符,或者提取了is.width()(非0情况下)个字符。
如果没有提取到任何非文件结束符的字符(包括空白字符),那么将调用istream.setstate(failbit),此时测试istream为假。1: while(cin >> word)
2: {
3: cout << "word read is: " << word << '\n';
4: }
Win——Ctrl+Z Unix——Ctrl+D
并且,应该是输入行的第一个字符就是文件结束符,然后回车才能结束循环。
相关推荐
### C++ `string` 类型的使用总结 在C++编程语言中,`string` 类是一种非常重要的数据结构,用于处理文本数据。本篇总结旨在详细介绍`string` 类的构造方法、常用操作方法及其功能特性。 #### 一、`string` 类对象...
#### 一、C++标准库中的`string`类型使用 在ANSI标准C++中,`string`是处理文本数据时非常重要的工具之一,它提供了丰富的功能来方便地操作字符串。本文将详细介绍`string`的基本使用方法及其常用的操作函数。 ###...
### C++中的string类 #### 引言 在C++编程语言中,`string`类是一种非常实用且功能强大的工具,它为处理文本数据提供了极大的便利。与传统的`char *`字符串相比,`string`类提供了更多的内置方法来简化字符串的...
在C#中,字符串是不可变的对象,类型为`System.String`,通常以Unicode编码存储。而在C++中,字符串通常是通过字符数组(如`char*`或`wchar_t*`)来表示的,且没有固定的格式。因此,当从C#传递字符串到C++时,必须...
总结,`std::string`是C++中的强大工具,提供了一整套操作字符串的方法,使代码更简洁、安全。深入学习`std::string`能显著提高C++编程效率,降低错误风险。通过阅读"深入学习C++_String2.1版",开发者可以更全面地...
在C++编程中,结构体(struct)是一种用户自定义的数据类型,它可以包含各种基本数据类型、其他结构体或类的实例。`std::string`是C++标准库中的一个类,用于处理字符串。当我们尝试在结构体中使用`std::string`时,...
字符串类型在C++中有多种表示方式,如`char *`、`std::string`等。其中`std::string`是C++标准库提供的字符串类,提供了丰富的接口和操作方法,因此在现代C++编程中更受欢迎。 ### 描述解析:整型转换字符串型 ...
本文将深入探讨C++中的函数,并特别关注`string`类型的处理以及与之相关的头文件。 首先,让我们了解C++中的函数基础。函数在C++中定义了一段可重用的代码,可以接受零个或多个参数,并可能返回一个值。例如,一个...
以下是对 C# 和 C++ 数据类型的比较,以及它们在 .NET Framework 中的表示。 首先,我们来看一下整数类型。C# 和 C++ 都支持基本的整数类型,如 `Byte`、`SByte`、`Int16`、`Int32`、`Int64`、`UInt16`、`UInt32` ...
在标准C++中,`std::string`类是一个非常重要的数据类型,它提供了对文本字符串的高效管理和操作。下面将详细介绍`std::string`类的一些主要功能和用法。 首先,要使用`std::string`,需要包含`#include <string>`...
### C++ `string` 类详解 ...此外,`std::string`还提供了对C风格字符串的转换功能,使得开发者能够在必要时进行两种字符串类型的互换。总之,熟练掌握`std::string`类的使用对于任何C++程序员来说都是非常重要的。
- `BSTR`(Basic String Type)在C++中通常表示一个宽字符串类型,在C#中使用`System.String`表示。 - **FLOAT (float) - System.Single** - `float`在C++中表示单精度浮点数,在C#中对应`System.Single`。 - **...
在标准C++中,`std::string`是一个非常重要的类,它提供了对字符串的高效管理和操作。`std::string`类是C++标准库的一部分,它弥补了C语言中使用字符数组处理字符串的不便。在MFC框架中,`CString`类提供了便捷的...
在标题“JNI 调 C/C++ 参数String”中,我们将探讨如何通过JNI传递Java的String类型参数到C或C++函数,并在本地代码中进行处理。 首先,让我们了解JNI的基本结构。要使用JNI,你需要创建一个Java类,声明一些 ...
说明:C++中的字符指针类型可以转换为PB中的`RefString`类型,用于传递字符串数据。 ##### 3. 颜色类型 - **C++**: `Colorref` (颜色引用,通常为整型) - **PB**: `Ulong` 说明:C++中的颜色引用类型可以通过转换...
以下是对C++中几种常见类型转换的详细总结: 1. `char*` to `string` 当我们需要将C风格的字符串(`char*`)转换为C++标准库中的`std::string`时,可以使用构造函数或者`assign()`方法。例如: ```cpp char a[] ...