Lecture 4
2
Where does the world begin?
%> java Foo
starts execution at
main
method
in class
Foo
There are no objects yet
main
(and other methods) create objects with
new
, then messages can begin
(Bank)
Most classes dont have
main
(BankAccount)
Some classes have only
main
(Hello)