From: Mark Phillips Newsgroups: comp.os.msdos.djgpp Subject: Re: Another question about C++ Date: Tue, 27 Jul 1999 11:52:46 -0500 Organization: The University of Manitoba Lines: 17 Message-ID: References: <19990727155716 DOT 12264 DOT rocketmail AT web103 DOT yahoomail DOT com> NNTP-Posting-Host: silver.cs.umanitoba.ca Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: canopus.cc.umanitoba.ca 933094371 17125 130.179.24.6 (27 Jul 1999 16:52:51 GMT) X-Complaints-To: Postmaster AT cc DOT umanitoba DOT ca NNTP-Posting-Date: 27 Jul 1999 16:52:51 GMT In-Reply-To: <19990727155716.12264.rocketmail@web103.yahoomail.com> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > " C++ does not support garbage collection. This is > compensated for, however, by enabling a type to > maintain its own storage management without requiring > intervention by a user" > > well... what does garbage collection mean?? ooh i know this one! garbage collection is a way to prevent memory leaks/simplify memory management. all it does is automatically free any block of memory which no pointer points to. java i think is the most well known language that uses garbage collection. mark