Evgenii Legotckoi
July 8, 2017, 3:31 p.m.

C++C++ - Tutorial 006. Structures

C++, struct

Одним из первых шагов в построении новых типов данных является организация данных в структуре, объединяющая несколько различных переменных с разными типами данных. Объявления структуры с помощью ключевого слова struct .

Например, объявим структуру Vector , в котором будет храниться указатель …

Read
Evgenii Legotckoi
July 6, 2017, 1:40 p.m.

C++C++ - Tutorial 005. Pointers, Arrays and Loops

C++, pointer, arrays, loops

An array of elements of type char can be declared like this:

  1. char v[6]; // array of 6 characters

Similarly, a pointer can be declared like this:

  1. char* p; // pointer to character

In declarations, [] means ‘‘array of’’ and …

Read
Evgenii Legotckoi
June 9, 2017, 4:37 p.m.

C++C++ - Tutorial 004. Tests and loops

C++, while, for, do, break, continue, if, else

C++ provides a standard set of operators for selecting a selection and cycles.

The keywords related to the construction of branching conditions for the code are:

  • if
  • else
  • switch
  • case
  • break
  • default

The key words relating to the construction of …

Read
Evgenii Legotckoi
June 5, 2017, 1:33 p.m.

C++C++ - Tutorial 003. Constants

C++, const, constexpr

C =++ supports two notations of immutability:

  1. const - which implies that the value will not change. First of all, this is used to specify interfaces, for data that is passed to functions and methods so that they are not …
Read
Evgenii Legotckoi
May 12, 2017, 11:06 p.m.

C++C++ - Tutorial 002. Types, Variables and Arithmetic

C++, int, char, double, auto, nullptr

Each variable or expression has its own data type, for example, an declaration

  1. int some_variable;

Indicates that the variable some_variable has an integer type int .

The declaration allows you to enter a variable in the program. This variable will …

Read
Evgenii Legotckoi
May 7, 2017, 2:51 p.m.

C++C++ - Tutorial 001. Hello World

C++, Hello World

The minimum program in C ++ is

  1. int main() { } // the minimal C++ program

In this program, the declaration of the main function is presented, which takes no arguments. The curly brackets reflect grouping in C++ and in …

Read
Evgenii Legotckoi
Feb. 3, 2017, 10:55 p.m.

QMLQML - Lesson 027. Adding QML in project based on QWidget

QQuickWidget, QML, C++, QWidget

When developing your application to Qt may happen a situation where required in an application written in QWidgets implement functional written in QML. To solve such a problem can be used QQuickWidget class that is used to render QML . …

Read
Evgenii Legotckoi
Aug. 28, 2016, 9:17 p.m.

QtQt/C++ - Lesson 055. QSignalMapper VS lambda functions

лямбда функция, Qt, C++, lambda, QSignalMapper

QSignalMapper is a wonderful class to organize the work of the signals and slots dynamically created objects. For example, the dynamically created buttons or objects in QStackedWidget. This was particularly true in older versions of the software, that is, and …

Read
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup