Index: [thread] [date] [subject] [author]
  From: Jason Grosland <jcg3@cs.duke.edu>
  To  : 
  Date: Sun, 28 Mar 1999 12:57:26 -0500

Re: java delete?

On Sun, 28 Mar 1999, Angelique Coviello wrote:

> Do we need to worry about deleting the Dice object that we "new" 
> when we play each round?  If so, how do we do it, and where (do we make a 
> typical C++ destructor?)

Java has automatic garbage collection.  You don't have to worry about
deleting anything...  it's all done for you.

There are things you have to keep track of when you're making a GUI
(graphical user interface), and when you do threading, but hopefully
you'll learn about that when you start using either one.

...jason

	     - By all means, think outside of the box.    -
	      - Just put everything back when you're done. -




Index: [thread] [date] [subject] [author]