Why do C++ compilers need name mangling?
Answers were Sorted based on User's Feedback
Answer / guest
Name mangling is the rule according to which C++ changes
function's name into function signature before passing that
function to a linker. This is how the linker differentiates
between different functions with the same name.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / siva
Compilers need name mangling to support/implement function
overloading.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / achal ubbott
It is by name mangling that a c++ compiler is able to
support function overloading.It is the way of
differentiating functions based on their name,number and
order and type of parameters. Unfortunately ISO has not set
any standard procedure for mangling names. So different c++
compiler vendors implement it in different ways.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is a virtual destructor?
Why the usage of pointers in C++ is not recommended ?
Will a catch statement catch a derived exception if it is looking for the base class?
what is pulse code modulation?
Explain shallow copy?
Is c++ low level?
Are vectors faster than arrays?
Can you please explain the difference between overloading and overriding?
What do you mean by translation unit in c++?
How do you find out if a linked-list has an end?
What is using namespace std in c++?
What is the Diffrence between a "assignment operator" and a "copy constructor"?