Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Init Statements for if/switch
In the previous exercise you probably had the problem, that you had to rename some variables or had to put it in a different scope to have const correctness. E.g
{
const auto it = address_book.find("Hans");
if (it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << "Hans" << " is not in address book\n";
}
}
{
const auto it = address_book.find("Peter");
if (it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << "Peter" << " is not in address book\n";
}
}
With C++17 there are new versions of the if and switch statements: if (init; condition)
and switch (init; condition)
.
The new if statement will make that additional scope in the example above obsolete and the code shorter:
if (const auto it = address_book.find("Hans"); it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << "Hans" << " is not in address book\n";
}
if (const auto it = address_book.find("Peter"); it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << "Peter" << " is not in address book\n";
}
DIY
Refactor the code and use the new if form to reduce the scope of the constants
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <map>
#include <string>
#include <iostream>
using namespace std::string_literals;
struct address_t {
std::string street;
unsigned plz;
std::string city;
};
int main() {
std::map<std::string, address_t> address_book;
const auto hans = "Hans Meister"s;
const auto hans_address = address_t{"Maihofstrasse 49"s, 6000u, "Luzern"s};
{
const auto& [it, inserted] = address_book.insert({hans, hans_address});
const auto& [name, address] = *it;
std::cout << "inserted = " << inserted << std::endl;
std::cout << "name = " << name << std::endl;
std::cout << "address = " << address.street << ", "
<< address.plz << ", "
<< address.city << std::endl;
}
{
const auto it = address_book.find(hans);
if (it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << hans << " is not in address book\n";
}
}
const auto peter = "Peter Müller"s;
{
const auto it = address_book.find(peter);
if (it != address_book.end()) {
const auto& [name, address] = *it;
std::cout << name << " is in address book living in " << address.city << std::endl;
} else {
std::cout << peter << " is not in address book\n";
}
}
const auto peter_address = address_t{"Langstrasse 49"s, 8000u, "Zürich"s};
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content