C++STL中的string容器

string 容器基本概念

        C 风格字符串 ( 以空字符结尾的字符数组 ) 太过复杂难于掌握,不适合大程序的开发, 所以 C++ 标准库定义了一种 string 类,定义在头文件。
String c 风格字符串对比:
        u Char*是一个指针,
        String 是一个类 string 封装了 char ,管理这个字符串,是一个 char 型的容器。
        u String 封装了很多实用的成员方法
        查找 find,拷贝 copy ,删除 delete 替换 replace ,插入 insert
        u 不用考虑内存释放和越界
        string 管理 char* 所分配的内存。每一次 string 的复制,取值都由 string 类负责维护,不用担心复制越界和取值越界等。

string 构造函数

        string();//创建一个空的字符串 例如 : string str;
        string(const string& str);//使用一个 string 对象初始化另一个 string 对象
        string(const char* s);//使用字符串 s 初始化
        string(int n, char c);//使用 n 个字符 c 初始化 

string 基本赋值操作

        string& operator =( const char * s); //char* 类型字符串 赋值给当前的字符串
        string& operator =( const string &s); // 把字符串 s 赋给当前的字符串
        string& operator =( char c); // 字符赋值给当前的字符串
        string& assign( const char *s); // 把字符串 s 赋给当前的字符串
        string& assign( const char *s, int n); // 把字符串 s 的前 n 个字符赋给当前的字 符串
        string& assign( const string &s); // 把字符串 s 赋给当前字符串
        string& assign( int n, char c); // n 个字符 c 赋给当前字符串
        string& assign( const string &s, int start, int n); // s start 开始 n 字符赋值给字符串

string 存取字符操作

        char & operator []( int n); // 通过 [] 方式取字符
        char & at( int n); // 通过 at 方法获取字符

string 拼接操作

        string& operator +=( const string& str); // 重载 += 操作符
        string& operator +=( const char * str); // 重载 += 操作符
        string& operator +=( const char c); // 重载 += 操作符
        string& append( const char *s); // 把字符串 s 连接到当前字符串结尾
        string& append( const char *s, int n); // 把字符串 s 的前 n 个字符连接到当前字 符串结尾
        string& append( const string &s); // operator+=()
        string& append( const string &s, int pos, int n); // 把字符串 s 中从 pos 开始 n 个字符连接到当前字符串结尾
        string& append( int n, char c); // 在当前字符串结尾添加 n 个字符 c string 查找和替换
        int find( const string& str, int pos = 0 ) const ; // 查找 str 第一次出现位置 , pos 开始查找
        int find( const char * s, int pos = 0 ) const ; // 查找 s 第一次出现位置 , po s 开始查找
        int find( const char * s, int pos, int n) const ; // pos 位置查找 s 的前 n 个字符第一次位置
        int find( const char c, int pos = 0 ) const ; // 查找字符 c 第一次出现位置
        int rfind( const string& str, int pos = npos) const ; // 查找 str 最后一次位 , pos 开始查找
        int rfind( const char * s, int pos = npos) const ; // 查找 s 最后一次出现位置 , pos 开始查找
        int rfind( const char * s, int pos, int n) const ; // pos 查找 s 的前 n 个字符 最后一次位置
        int rfind( const char c, int pos = 0 ) const ; // 查找字符 c 最后一次出现位置
        string& replace( int pos, int n, const string& str); // 替换从 pos 开始 n 字符为字符串 str
        string& replace( int pos, int n, const char * s); // 替换从 pos 开始的 n 个字 符为字符串 s

string 比较操作

/*
compare 函数在 > 时返回 1 < 时返回 -1 == 时返回 0
比较区分大小写,比较时参考字典顺序,排越前面的越小。
大写的 A 比小写的 a 小。
*/
        int compare( const string &s) const ; // 与字符串 s 比较
        int compare( const char *s) const ; // 与字符串 s 比较 string 子串
        string substr( int pos = 0 , int n = npos) const ; // 返回由 pos 开始的 n 个字符 组成的字符串

 string 插入和删除操作

        string& insert( int pos, const char * s); // 插入字符串
        string& insert( int pos, const string& str); // 插入字符串
        string& insert( int pos, int n, char c); // 在指定位置插入 n 个字符 c
        string& erase( int pos, int n = npos); // 删除从 Pos 开始的 n 个字符

string c-style 字符串转换

        //string 转 char*
        string str = "itcast" ;
        const char * cstr = str.c_str();
        //char* 转 string
        char * s = "itcast" ;
        string str(s);
        在 c++ 中存在一个从 const char string 的隐式类型转换,却不存在从一个 string 对象到 Cstring 的自动类型转换。对于 string 类型的字符串,可以通过 cstr() 函数 返回 string 对象对应的 C_string. 通常,程序员在整个程序中应坚持使用 string 类对象,直到必须将内容转化为 char 时才将其转换为 C_string.
提示 :
        为了修改 string 字符串的内容,下标操作符 [] at 都会返回字符的引用。但当字 符串的内存被重新分配之后,可能发生错误.
        string s = "abcdefg" ;
        char & a = s[ 2 ];
        char & b = s[ 3 ];
        a = '1' ;
        b = '2' ;
        cout << s << endl;
        cout << ( int *)s.c_str() << endl;
        s = "pppppppppppppppppppppppp" ;
        //a = '1';
        //b = '2';
        cout << s << endl;
        cout << ( int *)s.c_str() << endl;

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/194020.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【C++ Primer Plus学习记录】第5章编程练习

1.编写一个要求用户输入两个整数的程序。该程序将计算并输出这两个整数之间&#xff08;包括这两个整数&#xff09;所有整数的和。这里假设先输入较小的整数。例如&#xff0c;如果用户输入的是2和9&#xff0c;则程序将指出2~9之间所有整数的和为44。 //5.9 1 #if 1 #includ…

使用OpenMVS重建模型

1、数据格式转换 首先将生成的稠密点云以及图片信息转换成openmvs支持的.mvs文件。在openmvs_sample中的bin文件内打开终端 作者&#xff1a;舞曲的小水瓶 https://www.bilibili.com/read/cv25019877/ 出处&#xff1a;bilibili interfaceCOLMAP.exe -i D:\desktop\test\toy\…

【Linux服务器Java环境搭建】05 Node JS安装及环境变量配置

【Linux服务器Java环境搭建】01购买云服务器以及在服务器中安装Linux系统 【Linux服务器Java环境搭建】02 通过xftp和xshell远程连接云服务器 【Linux服务器Java环境搭建】03 Git工具安装 【Linux服务器Java环境搭建】04 JDK安装&#xff08;JAVA环境安装&#xff09; 【Linux服…

flink源码分析 - 命令行参数解析-CommandLineParser

flink版本: flink-1.11.2 调用位置: org.apache.flink.runtime.entrypoint.StandaloneSessionClusterEntrypoint#main 代码位置: flink核心命令行解析器: org.apache.flink.runtime.entrypoint.parser.CommandLineParser /** Licensed to the Apache Software Foundati…

基于OpenAPI工具包以及LSTM的CDN网络流量预测

基于LSTM的CDN网络流量预测 本案例是基于英特尔CDN以及英特尔 OpenAPI Intel Extension for TensorFlow* Intel oneAPIDPC Library 的网络流量预测&#xff0c;CDN是构建在现有网络基础之上的智能虚拟网络&#xff0c;目的是将源站内容分发至最接近用户的节点&#xff0c;使用…

unity学习笔记17

一、动画组件 Animation Animation组件是一种更传统的动画系统&#xff0c;它使用关键帧动画。你可以通过手动录制物体在时间轴上的变换来创建动画。 一些重要的属性&#xff1a; 1. 动画&#xff08;Animation&#xff09;&#xff1a; 类型&#xff1a; Animation组件允许…

java为什么要设计8个基本数据类型的封装类型?

Java中的基本数据类型包括byte、short、int、long、float、double、boolean和char。然而&#xff0c;这些基本数据类型并非对象&#xff0c;他们只是简单的数值&#xff0c;无法调用方法。 为了能在Java这种面向对象的语言中更好地操作这些数值&#xff0c;Java设计了对应的8个…

换股解套策略

在股市中&#xff0c;投资者难免会遇到被套的情况。面对这种情况&#xff0c;如何进行换股策略以降低损失并寻求反弹的机会呢&#xff1f;本文将为您详细解析。 一、了解被套的原因 在进行换股策略之前&#xff0c;首先要了解被套的原因。一般来说&#xff0c;被套的原因有以下…

使用Prometheus监控Padavan路由器

Prometheus监控Padavan路由器 1、背景 近期在Synology&#xff08;群辉&#xff09;中安装一套Prometheus监控程序&#xff0c;目前已经监控Synology&#xff0c;然后家中有有路由器&#xff08;Padavan&#xff09;型号&#xff0c;也准备使用PrometheusGrafan进行监控。 ‍…

1、STM32F407 LED Demo

#ifndef、#define、#endif格式条件编译&#xff0c;作用是避免头文件内容比重复定义 main.c #include "stm32f4xx.h" #include "led.h" #include "delay.h" //CPU主时钟168MHz int main(void) {delay_init(168);LED_Init();while(1){GPIO_SetB…

Python 读取电子发票PDF 转成Excel

Python 读取电子发票PDF 转成Excel 目录 0.前提 1.python相关的处理PDF的库 2.实际好用的 3.实际代码 4.思考 0.前提 只识别普通电子发票PDF&#xff0c;提取其中某些关键内容到excel中。 1.python相关的处理PDF的库 如下4个库是经常更新维护的&#xff01; pyP…

采集工具-免费采集器下载

在当今信息时代&#xff0c;互联网已成为人们获取信息的主要渠道之一。对于研究者和开发者来说&#xff0c;如何快速准确地采集整个网站数据是至关重要的一环。以下将从九个方面详细探讨这一问题。 确定采集目标 在着手采集之前&#xff0c;明确目标至关重要。这有助于确定采集…

企业数字化的思考

1. 企业信息化 1.1 从0到1构建信息系统 随着it基础的不断成熟与在企业业务中的应用&#xff0c;企业构建专业化的信息系统已不再需要太多的讨论&#xff0c;基本都在基于自身的阶段构建各种各样的业务支撑系统&#xff0c;从OA\CRM\财务系统\HR\ERP\SAP等到类似更为专项的合同…

flink源码分析 - standalone模式下jobmanager启动过程配置文件加载

flink版本: flink-1.11.2 代码位置: org.apache.flink.runtime.entrypoint.StandaloneSessionClusterEntrypoint#main /** Licensed to the Apache Software Foundation (ASF) under one* or more contributor license agreements. See the NOTICE file* distributed with t…

SCAU:求数的位数

求数的位数 Time Limit:1000MS Memory Limit:65536K 题型: 编程题 语言: G;GCC 描述 由键盘输入一个不多于9位的正整数&#xff0c;要求输出它是几位数。输入格式 一个整数输出格式 输出该数为几位数输入样例 34921输出样例 6 #include <stdio.h> #include&l…

冲突域和广播域

文章目录 冲突域广播域 冲突域 在网络内部两个数据帧同时进行传输时&#xff0c;产生与发生冲突的区域&#xff0c;所有共享介质都是一个冲突域。冲突域时基于第一层&#xff0c;物理层的。 集线器和中继器因为都在物理层&#xff0c;没有MAC地址表&#xff0c;所以不能隔离冲…

数据结构之堆排序以及Top-k问题详细解析

个人主页&#xff1a;点我进入主页 专栏分类&#xff1a;C语言初阶 C语言程序设计————KTV C语言小游戏 C语言进阶 C语言刷题 数据结构初阶 欢迎大家点赞&#xff0c;评论&#xff0c;收藏。 一起努力 目录 1.前言 2.堆排序 2.1降序排序 2.2时间复杂…

Prime 1.0

信息收集 存活主机探测 arp-scan -l 或者利用nmap nmap -sT --min-rate 10000 192.168.217.133 -oA ./hosts 可以看到存活主机IP地址为&#xff1a;192.168.217.134 端口探测 nmap -sT -p- 192.168.217.134 -oA ./ports UDP端口探测 详细服务等信息探测 开放端口22&#x…

【Vulnhub 靶场】【HackathonCTF: 2】【简单】【20210620】

1、环境介绍 靶场介绍&#xff1a;https://www.vulnhub.com/entry/hackathonctf-2,714/ 靶场下载&#xff1a;https://download.vulnhub.com/hackathonctf/Hackathon2.zip 靶场难度&#xff1a;简单 发布日期&#xff1a;2021年06月20日 文件大小&#xff1a;2.6 GB 靶场作者&…

54.多级缓存

目录 一、传统缓存的问题、多级缓存方案。 二、JVM进程缓存。 1&#xff09;进程缓存和缓存。 2&#xff09;导入商品案例。 1.安装MySQL 2.导入SQL 3.导入Demo工程 4.导入商品查询页面 3&#xff09;初识Caffeine&#xff08;就是在springboot学过的注解方式的cache&…