Is main() overloaded in C++?

C++OverloadingMain

C++ Problem Overview


2 valid versions of main() exist in C++:

int main()  // version 1
int main(int argc, char **argv)  // version 2

But both overloads cannot coexist at the same time. Why not? (Potential use case: while running the program from the terminal, if no arguments are passed the first version is called, otherwise the second version is.)

Does the compiler perform a special check to allow just one version per binary?

C++ Solutions


Solution 1 - C++

§3.6.1/2 (C++03) says

> An implementation shall not predefine > the main function. This function shall > not be overloaded. It shall have a > return type of type int, but otherwise > its type is implementation-defined. > All implementations shall allow both > of the following definitions of main:

   int main() { /* ... */ }
   int main(int argc, char* argv[]) { /* ... */ }

You can use either of them. Both are standard compliant.

Also, since char *argv[] is equivalent to char **argv, replacing char *argv[] with char **argv doesn't make any difference.


>But both the versions cannot co-exist at the same time ! (use case can be like: while running the binary from command prompt, if you pass no argument then 1st version should be called else the 2nd version).

No. Both versions cannot co-exist at the same time. One program can have exactly one main function. Which one, depends on your choice. If you want to process command-line argument, then you've to choose the second version, or else first version is enough. Also note that if you use second version, and don't pass any command line argument, then there is no harm in it. It will not cause any error. You just have to interpret argc and argv accordingly, and based on their value, you've to write the logic and the flow of your program.

Solution 2 - C++

Windows and Unix have:

int main(int argc, char **argv, char **envp)

and Win32 apps have:

int WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);

and MacOS has:

int main(int argc, char **argv, char **envp, char **apple)

Don't forget that main is not usually the first thing the OS calls when executing a program. The main function is the function that is called by the run time environment. The address of the first instruction to execute is usually declared in some meta data, usually at the start if the executable file.

None of the above contradicts the C/C++ standard as far as I can tell, as long as there is only one, which makes sense since the OS wouldn't know which to call if there were more than one. Checking there is only one is not done in the compiler, it is done in the linker.

Solution 3 - C++

Section 3.6.1.2 of both C++ Standard 1998 and 2003 editions states:

>An implementation shall not predefine the main function. This function shall not be overloaded. It shall have a return type of type int, but otherwise its type is implementation-defined.

Further,

The ISO C++ Standard (ISO/IEC 14882:1998) specifically requires main to return int. It has an explicit "shall" constraint upon well-formed programs.

Section § 3.6.1 ¶ 2:

>It shall have a return type of int, but otherwise its type is implementation-defined. All implementations shall allow both of the following definitions of main:

int main() { /* … */ }

and

int main(int argc, char* argv[]) { /* … */ }

So both versions of main are allowed by the standard and which one to use is left as an implementation preference of the programmer.

Solution 4 - C++

Main was defined back in the C days. It's setup more along the rules of printf. Consider main as a varadic function:

int main(...)

The standard says that no arguments and two pointer arguments are okay. However, if the implementation wants to provide more arguments, the implementation is free to do so.

The reason you can't have two mains is the same reason you can't define a printf like function twice in a C program. Sure, printf supports differing arguments and changes it's behavior depending on which arguments are there, but it's not overloading in the C++ sense of the term.

Solution 5 - C++

The standard says that main cannot be overloaded. It isn't mangled, and you cannot have two functions with the same unmangled name. This will cause a linking failure, I guess, but a compiler could want to add explicit checks in order to give clearer error messages.

int main(int argc, char **argv) and int main() should be the preferred signatures for it, but compilers are free to accept a main with different parameters.

Solution 6 - C++

It is not possible to overload main() in C++ because. the compiler shown the following error:

error C2731: 'main' : function cannot be overloaded 

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioniammilindView Question on Stackoverflow
Solution 1 - C++NawazView Answer on Stackoverflow
Solution 2 - C++SkizzView Answer on Stackoverflow
Solution 3 - C++Alok SaveView Answer on Stackoverflow
Solution 4 - C++Billy ONealView Answer on Stackoverflow
Solution 5 - C++peoroView Answer on Stackoverflow
Solution 6 - C++Dheeraj BansalView Answer on Stackoverflow