一、C++标准库的主要组件:

1、标准C库

2、I/O流技术(对标准输入输出设备称为标准I/O,对在外磁盘上文件的输入输出称为文件I/O,对内存中指定的字符串存储空间的输入输出称为串I/O)

3、string类模版

4、容器(vector、list、queue、stack、deque、map、set和bitset)

5、算法

6、对国际化的支持

7、对数字处理的支持

8、诊断支持(3中报错方式:C的断言、错误号、例外)

二、I/O流技术

C++为实现数据的输入输出定义了一个庞大的类库,它包括的类主要有ios、istream、ostream、iostream、ifstream、ofstream、fstream、istrstream、ostrstream、strstream等,其中ios为根基类,其余的都是它的直接或者间接派生类。

ios直接派生四个类:输入流iostream、输出流ostream、文件流基类fstream和字符串基类strstream.

通过上面的介绍很容易理解C++中的I/O流库都包含在iostream、fstream、strstream这三个类库文件中。

C++不仅仅提供了上面的三个类库,还为用户提供了提供了标准I/O操作中的类对象,分别是cin、cout、cerr、clog

格式控制操作符:

#include <iostream> //其实iomanip中包含iostream,所以该行可省略
#include <iomanip>
using namespace std; int main(){
int x = 30, y = 300, z = 1024;
cout << x << ' ' << y << ' ' << z << endl;
//八进制输出
cout << oct << x << ' ' << y << ' ' << z << endl;
//十六进制输出
cout << hex << x << ' ' << y << ' ' << z << endl;
//设置提示符和字母大写输出
cout << setiosflags(ios::showbase | ios::uppercase);
cout << x << ' ' << y << ' ' << z << endl;
cout << resetiosflags(ios::showbase | ios::uppercase);
cout << x << ' ' << y << ' ' << z << endl;
//按十进制输出
cout << dec << x << ' ' << y << ' ' << z << endl; return 0;
}

自定义流操作符:

#include <iostream>
using namespace std; ostream &lin(ostream &myos){
return myos << "\n-----------------";
} int main(){
cout << lin << lin << lin << endl;
return 0;
}

I/O操作符重载:

#include <iostream>
#include <string.h>
using namespace std; class Student{
friend ostream& operator << (ostream& ot, Student& popup);
char name[10];
unsigned int age;
unsigned long num;
public:
Student(char *na, unsigned int al, unsigned long number):age(al),
num(number){
strcpy(name, na);
}
}; ostream& operator << (ostream& ot, Student& popup){
ot << "Name:" << popup.name << endl << "Age:" << popup.age << endl
<< "Number:" << popup.num << endl << "---------------------" << endl;
return ot;
} int main(){
Student a("Wang", 18, 1234), b("zhao", 19, 4312), c("liu", 20, 2341);
cout << a << b << c; return 0;
}

写入文件:

#include <iostream>
#include <stdlib.h>
#include <fstream>
using namespace std; int main(void){
//定义输出文件流,并打开相应的文件
ofstream f1("a:wr1.dat");
if(!f1){
cerr << "a:wr1.data file not open!" << endl;
}
for(int i=0; i<21 ; i++){
f1 << i << ' ';
}
f1.close();
return 0;
}

读文件内容:

#include <iostream>
#include <std.ib.h>
#include <fstream> int main(){
//规定打开的文件时输入文件,若文件不存在则返回打开失败信息
ifstream f1("wrl.dat", ios::in | ios::nocreate);
//当f1打开失败时进行错误处理
if(!f1){
cerr << "wr1.data file not open!" << endl;
exit(1);
}
int x;
while(f1 >> x)
cout << x << ' ';
cout << endl;
f1.close(); return 0;
}

输入输出流操作:

#include <iostream>
#include <strstream>
using namespace std; int main(){
char a[50];
char b[50];
istrstream sin(a); //定义一个输入字符串流sin,使用的字符数组为a
//定义一个输出字符串流sout,使用的字符数组为b
ostrstream sout(b, sizeof(b));
//从键盘上输入字符
cin.getline(a, sizeof(a));
char ch = ' ';
int x;
while(ch !='@'){
//使用'@'字符作为字符串流结束标志
if(ch >= 48 && ch <= 57){
//将字符压入流中
sin.putback(ch);
sin >> x;
//存入输出流
sout << x << ' ';
}
//每次取出一个字符
sin.get(ch);
}
sout << '@' << ends;
//输出输出流的内容
cout << b;
cout << endl; return 0;
}

构造字符串:

#include <string>
#include <iostream>
using namespace std; int main(){
string Mystring1(10, ' ');
string Mystring2 = "This is a string";
string Mystring3(Mystring2);
cout << "string1 is : " << Mystring1 << endl;
cout << "string2 is : " << Mystring2 << endl;
cout << "stirng3 is : " << Mystring3 << endl; return 0;
}

字符串判断函数:

1、empty()

2、length()

3、resize()改变长度

#include <iostream>
#include <string>
using namespace std; int main(){
string TestString = "ll11223344565666";
cout << TestString << "\n size: " << TestString.length() << endl;
TestString.resize(5);
cout << TestString << "\n size: " << TestString.size() << endl;
TestString.resize(10);
cout << TestString << "\n size: " << TestString.size() << endl;
TestString.resize(15, '6');
cout << TestString << "\n size: " << TestString.size() << endl; return 0;
}

4、append()

5、c_str()

#include <string>
#include <iostream>
using namespace std; int main(){ string str1("012");
string str2("345");
cout << "str1 = " << str1.c_str() << endl;
cout << "str2 = " << str2 << endl;
//把字符串str2增加到str1尾部
str1.append(str2);
cout << "str1 = " << str1 << endl;
//返回的是一个常量指针
const char* ch = str1.c_str();
for(int i=0; i<str1.length(); i++){
cout << ch[i] << ' ';
}
cout << endl;
str1.append(str2.c_str(), 2); //把字符串中的前两个元素插入到str1尾部
str1.append(1, 'A');
str1.append(str2.begin(), str2.end());
cout << "str1 = " << str1 << endl;
cout << endl; return 0;
}

字符和字符串连接

#include <string>
#include <iostream>
using namespace std; int main(){
string result;
string S1 = "ABC";
string S2 = "DEF";
char CP1[] = "GHI";
char C = 'J';
cout << "S1 is " << S1 << endl;
cout << "S2 is " << S2 << endl;
cout << "C is " << C << endl;
result = CP1 + S1;
cout << "CP1 + S1 is " << result << endl;
result = S1 + C;
cout << "S1 + C is " << result << endl;
result = S1 + S2;
cout << "S1 + S2 is " << result << endl;
result = CP1 + C + S1;
cout << "CP1 + C + S1 is " << result << endl;
result = S1 + CP1 + C;
cout << "S1 + CP1 + C is " << result << endl; return 0;
}

字符串迭代:

#include <string>
#include <iostream>
#include <algorithm>
using namespace std; int main(){
const string hello("Hello, how are you?");
string s(hello.begin(), hello.end());
cout << "s : " << s << endl;
string::iterator pos;
for(pos = s.begin(); pos != s.end(); ++pos){
cout << *pos << ' ';
}
cout << endl;
//字符串翻转
reverse(s.begin(), s.end());
cout << "reverse: " << s << endl;
//去除重复元素
s.erase(unique(s.begin(), s.end()), s.end());
cout << "no duplictes: " << s << endl;
}

C++标准库概述的更多相关文章

  1. 【C】 06 - 标准库概述

    任何程序都会有一些通用的功能需求,对这些需求的实现组成了库.它可以提高程序的复用性.健壮性和可移植性,这也是模块化设计的体现.C规范定义了一些通用接口库,这里只作概述性介绍,具体细节当然还是要查阅规范 ...

  2. C++标准库概述 [转]

    C++标准库的所有头文件都没有扩展名. C++标准库的内容总共在50个标准头文件中定义,其中18个提供了C库的功能.<cname>形式的标准头文件[<complex>例外]其内 ...

  3. Python 3 学习笔记之——标准库概述

    1. 操作系统接口 os 模块提供了一些与操作系统相关联的函数. >>> os.getcwd() # 获取当前工作目录 '/home/senius' >>> os. ...

  4. C 标准库系列之概述

    基本上很多编程语言都会提供针对语言本身的一系列的标准库或者包,当然C语言同样也有提供标准库,C语言的标准库是一系列的头文件的集合:如assert.h.ctype.h.errno.h.float.h.l ...

  5. C语言-12-日期和时间处理标准库详细解析及示例

    概述 标准库 提供了用于日期和时间处理的结构和函数 是C++语言日期和时间处理的基础 与时间相关的类型 clock_t,本质是:unsigned long typedef unsigned long ...

  6. Boost程序库完全开发指南——深入C++“准”标准库(第3版)

    内容简介  · · · · · · Boost 是一个功能强大.构造精巧.跨平台.开源并且完全免费的C++程序库,有着“C++‘准’标准库”的美誉. Boost 由C++标准委员会部分成员所设立的Bo ...

  7. Python:标准库(包含下载地址及书本目录)

    下载地址 英文版(文字版) 官方文档 The Python Standard Library <Python标准库>一书的目录 <python标准库> 译者序 序 前言 第1章 ...

  8. 一起学习Boost标准库--Boost.StringAlgorithms库

    概述 在未使用Boost库时,使用STL的std::string处理一些字符串时,总是不顺手,特别是当用了C#/Python等语言后trim/split总要封装一个方法来处理.如果没有形成自己的com ...

  9. [技术] OIer的C++标准库 : STL入门

    注: 本文主要摘取STL在OI中的常用技巧应用, 所以可能会重点说明容器部分和算法部分, 且不会讨论所有支持的函数/操作并主要讨论 C++11 前支持的特性. 如果需要详细完整的介绍请自行查阅标准文档 ...

随机推荐

  1. orac

    #!/bin/bash # Copyright (c) 2013, 2016, Liang Guojun.  All rights reserved. # Program: #       Check ...

  2. UI Framework-1: views Windowing

    views Windowing views provides support for creating dialog boxes and other kinds of windows through ...

  3. AOC 电视机T3212M 进入 工厂模式方法,修改开机启动方式

    原启动方式: 通电,再按遥控 器上  “开机” 希望改成:  通电直接打开电视 方法: 1. 按遥控器上的 menu  1147  进入 工厂模式 2.  选择   7  General Settin ...

  4. [POI2011]MET-Meteors 整体二分_树状数组_卡常

    线段树肯定会 TLE 的,必须要用树状数组. Code: // luogu-judger-enable-o2 #include <cstdio> #include <algorith ...

  5. js对浏览器产生的影响

     Js 是单线程执行引擎.在我们动态修改一些属性时会产生两种效果:    1.Repaint ----- 一部分重画,修改 div 的颜色呀,但是尺寸没有改变.    2.Reflow ---- 元素 ...

  6. 洛谷3833 [SHOI2012]魔法树

    SHOI2012 D2T3 题目描述 Harry Potter 新学了一种魔法:可以让改变树上的果子个数.满心欢喜的他找到了一个巨大的果树,来试验他的新法术. 这棵果树共有N个节点,其中节点0是根节点 ...

  7. [HNOI2012]矿场搭建(割点)

    [HNOI2012]矿场搭建 题目描述 煤矿工地可以看成是由隧道连接挖煤点组成的无向图.为安全起见,希望在工地发生事故时所有挖煤点的工人都能有一条出路逃到救援出口处.于是矿主决定在某些挖煤点设立救援出 ...

  8. PCL ubuntu-12.04

    1.apt-get install build-essential cmake cmake-qt-gui 2.sudo add-apt-repository ppa:v-launchpad-joche ...

  9. Rapidjson的简单使用示例

    很早就想用用Markdown了,一直没机会.今天就来试一下 先放个目录: Rapidjson的简单使用示例 rapidjson官方教程 本示例所用环境 示例代码与注释 rapidjson官方教程 如果 ...

  10. Quart 学习

    quartz版本使用2.2.1 梳理一下其中的流程,可以表示为: 0.调度器线程run() 1.获取待触发trigger 1.1数据库LOCKS表TRIGGER_ACCESS行加锁 1.2读取JobD ...