++ Python. . C ++ , , main() (, , .) , C/++ main(), , , , , . . ; , -.
Python if __name__ == "__main__":, ?
, . main(). :
#include <iostream>
using namespace std;
bool RunBeforeMain ()
{
cout << "Before main()!" << endl;
return true;
}
bool ignore_this_variable = RunBeforeMain ();
int main ()
{
cout << "Start of main()" << endl;
return 0;
}
, static main(). , main(). , main(), , atexit().