(第三章)顺序容器(Sequential Containers)

string 表示可变长字符串,它的初始化方式分为两种:直接初始化和拷贝初始化。如果要处理string中的单个字符,可以使用范围for,也可以使用下标运算符执行随机访问

vectorb 表示同种对象的集合。如果向vector 对象中添加元素,必须使用push_back()函数,不可以使用下标形式添加元素。

iterator 提供与指针功能类似的间接访问操作,iterator可以进行解引用,与整数相加,比较,两个整数相加减等操作,但是不能直接两个iterator相加。

Array 表示同类对象的集合。但与vector相比,Array的容量是固定的。

字符串string用campare()的比较:

.compare() returns an integer, which is a measure of the difference between the two strings.

A return value of 0 indicates that the two strings compare as equal.
A positive value means that the compared string is longer, or the first non-matching character is greater.
A negative value means that the compared string is shorter, or the first non-matching character is lower.

字符串单纯的用>,<,==比较的话:

字符串的比较是逐个相应字符进行比较(比较他们的ASCII码),直到有两个字符不相等为止,ASCII码大的字母所在字符串就大,与字符串长度无关。对两个相等长度的字符串,若每个字符都比较完毕后仍相等,则两字符串相等;对不等长的字符串,若当短的字符串比较完毕时所有字符仍相等,则长度较长的字符串大!

c++ primer Practise 3.16

为什么以下程序会忽略getline()的循环???

#include<vector>
#include<string>

using namespace std;

int main()
{
    string s1;
    char cont = 'y';
    vector<string> vString;
    cout << "请输入一个字符串" << endl;

    while (cin >> s1)
    {
        cout << s1;
        vString.push_back(s1);
        cout << "是否继续输入(y or n)" << endl;
        cin >> cont ;
        //cin.ignore(1000, '\n');
        if (cont != 'y' && cont != 'Y')
            break;
    }

    for (auto c : vString)
        cout << c << " ";
    cout << endl;

    return 0;
}```

**解:**
>The reference page for ignore() describes the parameters, but perhaps in too technical a way to begin with.
Quote:
cplusplus_com wrote:
Extracts characters from the input sequence and discards them, until either n characters have been extracted, or one compares equal to delim.


>enter a number, the user might enter something like "123" and then press enter. All of that, including the newline generated when the enter key is pressed, gets stored in the buffer, "123\n".
After processing the cin >> nNum, the numeric characters which can be interpreted as an integer are extracted from the buffer, but the newline '\n' isn't part of the number, so it remains behind in the buffer.

>cin.ignore() with no parameters will just read and discard a single character from the buffer, which might be sufficient.

>But what if, when prompted for a number, the user typed 
" 123 hello \n"? Any leading spaces will be read and discarded, but any trailing characters whether spaces or anything else, will get left behind.

>So we can tell the ignore() function to ignore more than one character. But how many? Well, we don't know what was typed by the user, so I just chose a large number, 1000. cin.ignore(1000) tells the function to read and ignore the next 1000 characters. But hold on, the user may not have typed that many, and the command will sit there waiting for the next 999 characters, that's no good. So we add a delimiter, which tells ignore to stop processing after it has read that particular character. Hence the form I chose, cin.ignore(1000, '\n'); which means ignore up to 1000 characters, or until a newline is found. The number 1000 is entirely arbitrary, I just chose that because it is usually sufficient. 

**产生随机数**
```srand()``` 表示的是 Initialize random number generator;
```rand()``` 表示的是  Generate random number ;
```#include<iostream>
#include<ctime>
#include<cstdlib>
using namespace std;

int main()
{
    int i;
    srand(time(NULL));
    i = rand() % 10; //取值范围为 0-9
    cout << i << endl;
    return 0;
}```
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,327评论 0 23
  • 不过是吃了几个果冻和瑞士卷,嘴里便全部都是甜食的味道了,又黏又腻的感觉,十分的不舒服。顾不得去刷牙,倒在床上,...
    懿吟迦阅读 232评论 0 0
  • 瓜子 茶余饭后必不可少 闲聊闲扯必不可少 有嚼劲 越吃越香 尤其是无味儿的 抓一把瓜子聊个闲嗑 扯一下午 但...
    画有几画阅读 538评论 2 9
  • 人际关系 我是一很有时间观念的人。今天公司说有个畅销会,我一大早就去了,可惜去了之后老师正在布置会场,一直跟着忙前...
    思晏阅读 396评论 0 0