C++ → C++ - Tutorial 006. Structures
Одним из первых шагов в построении новых типов данных является организация данных в структуре, объединяющая несколько различных переменных с разными типами данных. Объявления структуры с помощью ключевого слова struct .
Например, объявим структуру Vector , в котором будет храниться указатель …
C++ → C++ - Tutorial 005. Pointers, Arrays and Loops
An array of elements of type char can be declared like this:
- char v[6]; // array of 6 characters
Similarly, a pointer can be declared like this:
- char* p; // pointer to character
In declarations, [] means ‘‘array of’’ and …
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 …
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
- 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 …
C++ → C++ - Tutorial 001. Hello World
The minimum program in C ++ is
- 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 …
QML → QML - 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 . …
Qt → Qt/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 …
- Last comments
- AKApril 1, 2025, 11:41 a.m.Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
- VPMarch 9, 2025, 4:14 p.m.Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
- ИМNov. 22, 2024, 9:51 p.m.Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
- Now discuss on the forum
- МАApril 1, 2025, 4:21 p.m.0ff763fe-4e50-455d-a3a6-5699c243b1a5_17_44_22_1.xml
- fFeb. 15, 2025, 1:46 p.m.Подскажите, пожалуйста! Как данный класс можно дополнить, чтобы созданные объекты можно было перемещать мышкой по сцене?
- Не запускается компьютер (точнее работает блок , но сам монитор вообще жесть)В общем я ничего с интернета не скачивала в последнее время. На компе никаких левых пр…
- Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…