Is C++ still a "language"?
Posted
by
slashmais
on Programmers
See other posts from Programmers
or by slashmais
Published on 2012-12-17T06:46:57Z
Indexed on
2012/12/17
11:13 UTC
Read the original article
Hit count: 166
c++
Considering that C++ is a conglomerate of at least the following:
- C
- C-with-classes (original C++)
- templates (class, function)
- template meta-programming
- variadic templates(pdf)
- lambda functions
- preprocessor macros, pragma's
each of which requiring specialized knowledge of their distinct implementation semantics.
You can use only some of the above and call your code "C++".
Still a language?, or else what is it?
© Programmers or respective owner