I read that the C++ standard forbids recursion in main(), but g++ compiles the following code without complaint:
int main()
{
main();
}
Can anyone clarify this?
|
|
According to the standard in 3.6.1/3, it's not :
The definition of used being :
|
|||||||||||
|
|
I'll do the fish and explain why this is verboten. Before a C or C++ program can start running, the CRT has to be initialized first. Open stdin/out/err, call initializers, that sort of thing. There are two basic strategies to get this done, a heavy platform implementation detail.
|
|||||||||||||
|
|
The claim here is that it is indeed specifically forbidden:
You can, of course, do this:
(Note I added a get-out clause. I can't even hypothetically code infinite recursion, it repeats on me.) |
|||||||
|
|
It is not legal. Read 3.6.1-3 :
|
|||
|
|
|
Other people have addressed the standards part. However, I'd like to note that g++ (at least 4.6.2) will reject this if you use
|
|||
|
|