forked from jzplp/Cpp-Primer-Answer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
32 lines (30 loc) · 1.07 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include<iostream>
#include<string>
#include<utility>
#include "StrBlob.h"
int main()
{
StrBlob b1;
std::string s;
while(std::cin >> s)
b1.push_back(std::move(s));
StrBlob b2 = b1;
StrBlobPtr pn = b1.begin();
const StrBlobPtr pn1 = b1.begin();
std::cout << pn[0] << " " << pn1[0] << " " << b1.cbegin()++[0] << std::endl;
b2 = b2;
const StrBlob bn = b1;
b1[1] = std::string("1234");
std::cout << b1[0] << " " << b1[1] << std::endl;
std::cout << bn[0] << " " << bn[1] << std::endl;
for(ConstStrBlobPtr p= b2.cbegin(); p != b2.cend(); ++p)
std::cout << p.deref() << " ";
std::cout << std::endl;
std::cout << (b1 == b2) << std::endl;
std::cout << (b1 > b2) << " " << (b1 < b2) << " " << (b1 >= b2) << " " << (b1 <= b2) << " " << std::endl;
StrBlobPtr p1 = b1.begin(), p2 = ++b1.begin();
std::cout << (p1 > p2) << " " << (p1 < p2) << " " << (p1 >= p2) << " " << (p1 <= p2) << " " << std::endl;
ConstStrBlobPtr p3 = b1.cbegin(), p4 = ++(b1.cbegin());
std::cout << (p3 > p4) << " " << (p3 < p4) << " " << (p3 >= p4) << " " << (p3 <= p4) << " " << std::endl;
return 0;
}