...

/

C++ Compared With Other Languages

C++ Compared With Other Languages

Learn about the performance and advantages of C++ over other programming languages.

We'll cover the following...

A multitude of application types, platforms, and programming languages have emerged since C++ was first released. Still, C++ remains a widely used language, and its compilers are available for most platforms. The major exception, as of today, is the web platform, where JavaScript and its related technologies are the foundation. However, the web platform is evolving into being able to execute what was previously only possible in desktop applications, and in that context, C++ has found its way into web applications using technologies such as Emscripten, asm.js, and WebAssembly.

In this lesson, we’ll begin by looking at competing languages in the context of performance. Following this, we’ll look at how C++ handles object ownership and garbage collection in comparison to other languages, ...