C++Learn C++Videos

Learn C++ With Performance Matters by Emery Berger (CPPCon 2020) Video

Performance is one of the key reasons why so many C++ programmers enjoy the language. This video will be addressing some of the significant and unexpected challenges faced by C++ programmers trying to achieve high performance on modern hardware platforms: performance is much less reliable and predictable than you would expect. Since complier optimization run out of steam, we need better support…
Read more
C++Game DevelopmentLearn C++

Learn to Develop a Perseverance Mars Simulation 3D in C++ Builder

Do you want to develop your own Mars Simulation with the latestMars Perseverance Rover3D Model orMars Ingenuity Helicopter3D Model? C++ Builder is very easy to develop this kind of simple simulations. You just need a 3D object model and some colors, lights, a camera, maybe some textures. This same method and results can be obtained in Delphi too. Let’s see how it is…
Read more
C++C++11C++14C++17Language FeatureLearn C++

Tutorial: Learn To Copy Matrix As A Excel Clipboard In Modern C++

Clipboardalso called thepaste buffer, is a buffer that operating systems provide to copy things (texts, bitmaps, tables, etc.) for the short term and transfer within and between application programs. The clipboard is usually temporary and unnamed, and its contents reside in the computer’s memory. InC++ Builderthere are good components to use Excel forms, excel…
Read more
C++Learn C++Videos

Learn C++ With A Parallel and Heterogeneous Task Programming System Using Modern C++ by Tsung-Wei Huang (CPPCon 2020) Video

Taskflow develops a simple and powerful task programming model to allow for efficient implementation of heterogeneous decomposition strategies. This video will cover three aspects: (1) a heterogeneous task programming model using modern C++, (2) an effective work-stealing technique that is generalizable to arbitrary heterogeneous domains, and (3) user experience that we have gained and suggested…
Read more