why name mangling isn't breaking my program? [

2019-08-12 04:52发布

Possible Duplicate:
Is main() overloaded in C++?

here's my code:

#include <iostream>

int main(void* a, void* b)
{
    std::cout << "hello standalone " << std::endl;                      
    return 0;
}

different parameters should have a different symbol name after name mangling(void* a, void* b) should be different from (int, char**), but this program doesn't have any problem when running.

Why is that?

2条回答
唯我独甜
2楼-- · 2019-08-12 05:31

It depends on the compiler. The standard required signatures for main are:

int main()
int main(int argc, char** argv)
int main(int argc, char* argv[])

But besides these, the compiler is free to provide other signatures as well.

For example, gcc 4.3.4 rejects your code - http://ideone.com/XZp2h

MSVS complains about unresolved externals.

查看更多
不美不萌又怎样
3楼-- · 2019-08-12 05:56

Because main is a special case, and the compiler generates special code for it. Typically, main will be called from a startup routine—often called crt0 in older compilers—written in C, so the compiler will generate main as if it were declared extern "C". But that's in no way required; it's a just a typical implementation.

查看更多
登录 后发表回答