In C++ why don't we ever place the main method inside a class (like Java)? Why doesn't doing so make sense (I think)?
|
|
We can. Feel free define a class method called This design comes all the way from C. Compatibility with existing C code was a major design goal of C++ early on, and there was hardly any real benefit to changing the entry point convention. So they kept the C standard in place. And like everyone said, C++, unlike Java, does perfectly allow for standalone (i. e. non-class) functions. |
|||||||||||||||
|
|
Why would we? Why do we need to? For a class method to make sense, we have to have an instance of an object. When So it could have been made a static member function instead, but what would be the point? Is it "more object-oriented"? How so? I think it makes good sense the way C++ does it: In Java, |
|||||||||||||||||
|
|
Because in C which far predates classes, If you really want to do this, there's nothing stopping you from writing a class you instantiate in |
|||
|
|
|
In C++, main() is a function that is called when the program runs, and is not a method. This main function may use classes and methods of classes in its execution. Methods are functions defined within classes that are intended to stay close to the class/object they are defined in. Therefore, main() is not stuck inside a class because it is not meant to act upon a single class or object |
|||
|
|
|
C++ was intended and is supposed to be backward compatible with C and cfront (the first C++ compiler) wouldn't have worked if main had not been allowed. The first / original C++ compiler, called cfront, compiled C++ by converting it to C, and the C language requires the use of main() See the following URL's for more information: http://en.wikipedia.org/wiki/Cfront http://www.physics.drexel.edu/courses/Comp_Phys/General/C_basics/ |
|||
|
|
|
Java is a complete Object Oriented Language while C++ is only partial Object Oriented Language. So, in C++ compiler searches for main in global scope. |
|||
|
|
