C++ --> string类的使用(详细介绍)

简介: C++ --> string类的使用(详细介绍)

前言

说完STL的重要性,我们就要接触第一个string,虽然string不在容器内,但是仍然有很重要的地位,简单陈述string常用的操作。

basic_string

C++的std::basic_string类是一个模板类,它支持多种字符类型。

  • char:用于表示单个字节的字符,通常用于ASCII编码。
  • wchar_t:用于表示宽字符,可以用来支持更广泛的字符集,如Unicode。
  • char16_t:用于表示16位的Unicode字符(UTF-16编码)。
  • char32_t:用于表示32位的Unicode字符(UTF-32编码)。
  • char8_t:用于表示UTF-8编码的字符。

basic_srring实例化出来4中类型

string
wstring
u16string
u32string

string 就是basic_string实例化出来的类型

Unicode是什么

  1. 统一码(Unicode),也叫万国码、单一码,由统一码联盟开发,是计算机科学领域里的一项业界标准,包括字符集、编码方案等。
  2. 统一码是为了解决传统的字符编码方案的局限而产生的,它为每种语言中的每个字符设定了统一并且唯一的二进制编码,以满足跨语言、跨平台进行文本转换、处理的要求。

解释

Unicode的出现就为了解决世界多样化的语言问题,Unicode的目的是为了解决传统字符编码方案的局限,满足跨语言、跨平台进行文本转换、处理的要求。Unicode能够表示世界上几乎所有的字符系统,包括汉字、拉丁字母、希腊字母、阿拉伯字母等,并为每个字符提供一个唯一的编号,称为码点。


Unicode是一个字符集,而不是编码方式。实际的编码方式有多种,其中最常见的是UTF-8``UTF-16``UTF-32 UTF-8是一种变长编码方式,可以使用1到4个字节来表示每个Unicode字符,它完全兼容ASCII编码,使得英文字符只需要一个字节就可以表示

string介绍

在C++编程中,string类是标准模板库(STL)中的一个核心组成部分,它提供了一种安全、便捷的方式来处理文本数据。string类封装了字符数组,并提供了一系列成员函数来执行字符串的创建、修改、连接、查找、替换等操作。

一、string默认成员函数

string出现的时间实际是早于STL的,是后来划分进STL库的,所以string开始的设计比较冗余,有许多没有必要的接口(共100多个)这也是被广大C++程序员吐槽的一个槽点,我们无需将每一个接口都记住,我们需要将核心接口记住并熟练使用,遇见一些默认的接口查看文档就可以啦!

构造函数(constructor)

截取C++官网

default (1) string();
copy (2) string(const string & str);
from c-string (4) string (const char* s);
from sequence (5) string(const char* s, size_t n);
fill (6) string(size_t n, char c);
int main()
{
  //1.无参数构造函数
  //string();
  string s1;
  //2.拷贝构造
  //string(const string & str);
  string s2(s1);
  //3.字符串常量初始化
  //string(const char* s);
  string s3("hello world");
  //4.字符串前n个字符初始化
  //string(const char* s, size_t n);
  string s4("hello world", 5);
  //5.用n个字符初始化
  //string(size_t n, char c);
  string s5(5, '*');

  cout << s1 << endl;//空
  cout << s2 << endl;//空
  cout << s3 << endl;//hello world
  cout << s4 << endl;//hello
  cout << s5 << endl;//*****

  return 0;
}

析构函数(destructor)

析构函数很简单,在此不过多介绍

~string();

赋值运算符重载

截取C++官网

功能 函数声明
string (1) string& operator= (const string& str);
c-string (2) string& operator= (const char* s);
character (3) string& operator= (char c);

=进行重载;

int main()
{

  //类
  //string& operator= (const string & str);
  string s1("hello world");
  string s2;
  s2 = s1;
  //重载常量字符串
  //string & operator= (const char* s);
  string s3 = "hello world";
  //重载字符类型
  //string& operator= (char c);
  string s4 = "*";

  cout << s1 << endl;//hello wold
  cout << s2 << endl;//hello wold
  cout << s3 << endl;//hello wold
  cout << s4 << endl;//*
  return 0;
}

二、string相关成员函数

capacity

截取C++官网

功能 函数声明
size size_t size() const;
length size_t length() const;
resize (1)void resize (size_t n);
(2) void resize (size_t n, char c);
capacity size_t capacity() const;
clear void clear();
empty bool empty() const;

操作

int main()
{
  string s = "hello world";
  
  //1.计算字符串大小
  cout << s.size() << endl;  // 11
    
  //2.计算字符串长度
  cout << s.length() << endl;// 11
    
  //3.计算字符串容量
  cout << s.capacity() << endl;// 15 在不同编译器下capacity扩容规则是一样的
    
  //4.指定大小,默认填充\0,可以指定字符;
  s.resize(13);
  cout << s << endl;// hello world\0\0
  s.resize(15,'x');
  cout << s << endl;   //hello worldxxxx
    
  //5.判断字符串是否是空
  cout << s.empty() << endl;// 0 -->返回值是bool
    
  //6.清除字符串
  s.clear();
  cout << s.empty() << endl;// 1 -->为真
  
  return 0;
}

Element access

operator[ ]

下标访问

截取C++官网

函数声明
char& operator[] (size_t pos);
const char& operator[] (size_t pos) const;
操作
int mian ()
{
    string s = "hello world";
    cout << s[1] << endl;//打印出  e
    return 0;
}

Modifiers

operator+=

截取C++官网

类型 函数声明
string (1) string& operator+= (const string& str);
c-string (2) string& operator+= (const char* s);
character (3) string& operator+= (char c);
操作
int mian ()
{
      string s = "hello world";
  string s1 = "xxxx";
  //后面添加一个string类
  s += s1;
  cout << s << endl;//hello worldxxxx
  //后面添加字符串
  s += "ccc";
  cout << s << endl;//hello worldxxxxccc
  //后面添加一个字符
  s += 'v';
  cout << s << endl;//hello worldxxxxcccv
    return 0;
}

append

截取C++官网

函数声明
string& append (const string& str);
string& append (const char* s);
string& append (size_t n, char c);
操作

(操作同operator+=),oparator的底层就是append.

int mian ()
{
     string s = "hello world";
  string s1 = "xxxx";
  //后面添加一个string类
  s.append(s1);
  cout << s << endl;//hello worldxxxx
  //后面添加字符串
  s.append("ccc");
  cout << s << endl;//hello worldxxxxccc
  //后面添加一个字符
  s.append ('v');
  cout << s << endl;//hello worldxxxxcccv
    return 0;
}

insert

函数声明
string& insert (size_t pos, const string& str);
string& insert (size_t pos, const char* s);
string& insert (size_t pos, size_t n, char c);
操作
  string s = "hello world";
  string s1 = "xxxx";
  //在第一个位置插入string类
  cout << s.insert(1, s1) << endl;//hxxxxello world
  //在第二个位置插入字串
  cout << s.insert(2, "xxx") << endl;//hxxxxxxxello world
  //在第三个位置插入5个'c'
  cout << s.insert(3, 5,'c') << endl;//hxxcccccxxxxxello world

erase

函数声明
string& erase (size_t pos = 0, size_t len = npos);
操作
int main ()
{
  string s = "hello world";
  //在第0个位置删除2个字符
  cout << s.erase(0, 2) << endl;
  //在地pos位置删除后面全部,npos为size_t = -1
  cout << s.erase(2) << endl;

  return 0;
}

String operations

c_str

得到一个C字符串

函数声明
const char* c_str() const;
操作
int mian ()
{
    string s = "hello world";
  const char* p = s.c_str();
    return 0;
}

find

函数声明
size_t find (const string& str, size_t pos = 0) const;
size_t find (const char* s, size_t pos = 0) const;
size_t find (char c, size_t pos = 0) const;
操作
int mian ()
{
     string s1 = " ";
  string s = "hello world";
  //查找string对象
  cout << s.find(s1) << endl;//5
  //查找字符串
  cout << s.find("ll") << endl;//2
  //查找字符
  cout << s.find('o') << endl;//4
    return 0;
}

Non-member function overloads

operator>> (string) operator<< (string)

流插入和提取,可以让我们更加轻松的打印。

目录
相关文章
|
17天前
|
API 索引
String类下常用API
String类下常用API
31 1
|
17天前
for循环和String类下方法的一个练习题
for循环和String类下方法的一个练习题
42 1
|
4天前
|
存储 编译器 C++
C ++初阶:类和对象(中)
C ++初阶:类和对象(中)
|
4天前
|
C++
C++(十六)类之间转化
在C++中,类之间的转换可以通过转换构造函数和操作符函数实现。转换构造函数是一种单参数构造函数,用于将其他类型转换为本类类型。为了防止不必要的隐式转换,可以使用`explicit`关键字来禁止这种自动转换。此外,还可以通过定义`operator`函数来进行类型转换,该函数无参数且无返回值。下面展示了如何使用这两种方式实现自定义类型的相互转换,并通过示例代码说明了`explicit`关键字的作用。
|
4天前
|
存储 设计模式 编译器
C++(十三) 类的扩展
本文详细介绍了C++中类的各种扩展特性,包括类成员存储、`sizeof`操作符的应用、类成员函数的存储方式及其背后的`this`指针机制。此外,还探讨了`const`修饰符在成员变量和函数中的作用,以及如何通过`static`关键字实现类中的资源共享。文章还介绍了单例模式的设计思路,并讨论了指向类成员(数据成员和函数成员)的指针的使用方法。最后,还讲解了指向静态成员的指针的相关概念和应用示例。通过这些内容,帮助读者更好地理解和掌握C++面向对象编程的核心概念和技术细节。
|
11天前
|
编译器 C++ 容器
【C++】String常见函数用法
【C++】String常见函数用法
10 1
|
17天前
|
存储 算法 编译器
c++--类(上)
c++--类(上)
|
18天前
|
存储 SQL Java
Java 系类之 Java StringBuffer类详解
这篇文章详细介绍了Java中的StringBuffer类的使用,包括其构造方法、追加字符串、替换字符、反转字符串和删除字符串的方法,并提供了相应的示例代码。
|
4天前
|
存储 C++
C++(五)String 字符串类
本文档详细介绍了C++中的`string`类,包括定义、初始化、字符串比较及数值与字符串之间的转换方法。`string`类简化了字符串处理,提供了丰富的功能如字符串查找、比较、拼接和替换等。文档通过示例代码展示了如何使用这些功能,并介绍了如何将数值转换为字符串以及反之亦然的方法。此外,还展示了如何使用`string`数组存储和遍历多个字符串。
|
11天前
|
缓存 安全 Java
Java String类
Java String类
11 0