Book Image

Expert C++

By : Vardan Grigoryan, Shunguang Wu
5 (1)
Book Image

Expert C++

5 (1)
By: Vardan Grigoryan, Shunguang Wu

Overview of this book

C++ has evolved over the years and the latest release – C++20 – is now available. Since C++11, C++ has been constantly enhancing the language feature set. With the new version, you’ll explore an array of features such as concepts, modules, ranges, and coroutines. This book will be your guide to learning the intricacies of the language, techniques, C++ tools, and the new features introduced in C++20, while also helping you apply these when building modern and resilient software. You’ll start by exploring the latest features of C++, and then move on to advanced techniques such as multithreading, concurrency, debugging, monitoring, and high-performance programming. The book will delve into object-oriented programming principles and the C++ Standard Template Library, and even show you how to create custom templates. After this, you’ll learn about different approaches such as test-driven development (TDD), behavior-driven development (BDD), and domain-driven design (DDD), before taking a look at the coding best practices and design patterns essential for building professional-grade applications. Toward the end of the book, you will gain useful insights into the recent C++ advancements in AI and machine learning. By the end of this C++ programming book, you’ll have gained expertise in real-world application development, including the process of designing complex software.
Table of Contents (22 chapters)
1
Section 1: Under the Hood of C++ Programming
7
Section 2: Designing Robust and Efficient Applications
17
Section 3: C++ in the AI World

Using Qt widgets

Widgets are visual GUI components. If a widget doesn't have a parent, it is treated as a window, otherwise known as a top-level widget. Earlier in this chapter, we created the simplest possible window in Qt, as shown in the following code:

#include <QtWidgets>

int main(int argc, char** argv)
{
QApplication app(argc, argv);

QWidget window;

window.resize(120, 100);
window.setWindowTitle("Mastering C++");
window.show();

return app.exec();
}

As you can see, the window object doesn't have a parent. The thing is, the constructor of QWidget takes another QWidget as the parent of the current one. So, when we declare a button and want it to be a child of our window object, we do so in the following way:

#include <QtWidgets>

int main(int argc, char** argv)
{
QApplication app(argc, argv);

QWidget window;
window.resize(120, 100);
window...