|
1 | 1 | // fig08_05.cpp
|
2 | 2 | // Printing string characteristics.
|
| 3 | +#include <fmt/format.h> |
3 | 4 | #include <iostream>
|
4 | 5 | #include <string>
|
5 |
| -#include "fmt/format.h" // In C++20, this will be #include <format> |
6 |
| -using namespace std; |
7 | 6 |
|
8 | 7 | // display string statistics
|
9 |
| -void printStatistics(const string& s) { |
10 |
| - cout << fmt::format("capacity: {}\nmax size: {}\nsize: {}\nempty: {}", |
| 8 | +void printStatistics(const std::string& s) { |
| 9 | + std::cout << fmt::format( |
| 10 | + "capacity: {}\nmax size: {}\nsize: {}\nempty: {}", |
11 | 11 | s.capacity(), s.max_size(), s.size(), s.empty());
|
12 | 12 | }
|
13 | 13 |
|
14 | 14 | int main() {
|
15 |
| - string string1; // empty string |
| 15 | + std::string string1; // empty string |
16 | 16 |
|
17 |
| - cout << "Statistics before input:\n"; |
| 17 | + std::cout << "Statistics before input:\n"; |
18 | 18 | printStatistics(string1);
|
19 | 19 |
|
20 |
| - cout << "\n\nEnter a string: "; |
21 |
| - cin >> string1; // delimited by whitespace |
22 |
| - cout << "The string entered was: " << string1; |
23 |
| - cout << "\nStatistics after input:\n"; |
| 20 | + std::cout << "\n\nEnter a string: "; |
| 21 | + std::cin >> string1; // delimited by whitespace |
| 22 | + std::cout << fmt::format("The string entered was: {}\n", string1); |
| 23 | + std::cout << "Statistics after input:\n"; |
24 | 24 | printStatistics(string1);
|
25 | 25 |
|
26 |
| - cout << "\n\nEnter a string: "; |
27 |
| - cin >> string1; // delimited by whitespace |
28 |
| - cout << "The string entered was: " << string1; |
29 |
| - cout << "\nStatistics after input:\n"; |
| 26 | + std::cout << "\n\nEnter a string: "; |
| 27 | + std::cin >> string1; // delimited by whitespace |
| 28 | + std::cout << fmt::format("The string entered was: {}\n", string1); |
| 29 | + std::cout << "Statistics after input:\n"; |
30 | 30 | printStatistics(string1);
|
31 | 31 |
|
32 | 32 | // append 46 characters to string1
|
33 | 33 | string1 += "1234567890abcdefghijklmnopqrstuvwxyz1234567890";
|
34 |
| - cout << "\n\nstring1 is now: " << string1; |
35 |
| - cout << "\nStatistics after concatenation:\n"; |
| 34 | + std::cout << fmt::format("\n\nstring1 is now: {}\n", string1); |
| 35 | + std::cout << "Statistics after concatenation:\n"; |
36 | 36 | printStatistics(string1);
|
37 | 37 |
|
38 | 38 | string1.resize(string1.size() + 10); // add 10 elements to string1
|
39 |
| - cout << "\n\nStatistics after resizing to add 10 characters:\n"; |
| 39 | + std::cout << "\n\nStatistics after resizing to add 10 characters:\n"; |
40 | 40 | printStatistics(string1);
|
41 |
| - cout << endl; |
| 41 | + std::cout << '\n'; |
42 | 42 | }
|
43 | 43 |
|
44 |
| - |
45 |
| - |
46 |
| - |
47 |
| - |
48 |
| - |
49 | 44 | /**************************************************************************
|
50 |
| - * (C) Copyright 1992-2017 by Deitel & Associates, Inc. and * |
| 45 | + * (C) Copyright 1992-2022 by Deitel & Associates, Inc. and * |
51 | 46 | * Pearson Education, Inc. All Rights Reserved. *
|
52 | 47 | * *
|
53 | 48 | * DISCLAIMER: The authors and publisher of this book have used their *
|
|
0 commit comments