> > i am confused with this syntax "<Main Class>"
>
[quoted text clipped - 11 lines]
>
> -- chris
ok.
can we infer from the above that Orange has the main method ?
Chris Uppal - 06 Nov 2006 17:19 GMT
[me:]
> > Quite often in computer programming, when someone writes (in
> > documentation, comments, web-pages, Usenet...) something like
[quoted text clipped - 6 lines]
> > you to replace <Main Class> with the name of a class -- the one
> > containg main().
[...]
> can we infer from the above that Orange has the main method ?
No, not at all. Why should we be able to infer that ?
-- chris
gk - 07 Nov 2006 02:22 GMT
> [me:]
> > > Quite often in computer programming, when someone writes (in
[quoted text clipped - 13 lines]
>
> -- chris
ok...fine.....this is nice......thanks
Daniel Pitts - 06 Nov 2006 20:52 GMT
> > > i am confused with this syntax "<Main Class>"
> >
[quoted text clipped - 15 lines]
>
> can we infer from the above that Orange has the main method ?
You can't infer the main method. You have to create it.
Classes only define structure, you have to create an "entry point" into
your program. The entry point (usually a main method) tells the
computer what to do, such as create an object or execute a method call.