C++Language FeatureLearn C++

How to Create a New 64bits VCL Component in C++ or Delphi

How can I create a new 64bits VCL Component? How can I use the New Component menu? How can I use and fill the New Component Wizard for the 64bits VCL applications? What is a Component in C++? What is an Object in C++? Let’s answer these questions. Note that this article uses C++ Software for its example, but the process for Delphi applications is exactly the same. One of the most…
Read more
C++C++11C++14C++17Introduction to C++Learn C++

How To Use Smart Pointers For Dynamic C++ Memory Management

In computers, all data and operations during runtime are stored in the memory of our computers, IoTs, or in other microdevices. This memory is generally a RAM (Random Access Memory) that allows data items to be read or written in almost the same amount of time, irrespective of the physical location of data inside the memory. In this post, you’ll learn how to use Smart Pointers for Dynamic C++…
Read more
C++Introduction to C++Learn C++

How To Define Vectors In Modern C++ On Windows

In this post, you’ll get answers to these questions: What are the Vectors in C++?How can we use std::vector?How can I define vectors for different data types?Can I define structs or other datatypes in std::vector? By learning how to define vectors in modern C++ on Windows, it will help you to build C++ applications with the use of a C++ IDE. Arraysandstructsin C++ are…
Read more
C++Introduction to C++Learn C++

How To Create App Splash Screens For Android And iOS In C++

ASplash Screenis a graphical control element consisting of a window containing an image or a logo and sometimes includes the details about the current version number of the software and components used. ASplash Imagecan appear on a Splash Screen while a game or program is launching. In Multi-Device C++ Software applications, Splash Screens are the images that are shown…
Read more