Welcome to Web-News
A Web-based News Reader
Subject destructors
From Bill Baxter <dnewsgroup@billbaxter.com>
Date Tue, 01 May 2007 16:19:20 +0900
Newsgroups digitalmars.D.learn

Is this ok in D?


class MyClass
{
    OtherClass a;
    this() {
       a = new OtherClass;
    }
    ~this() {
       delete a;
    }
}

I was just trying to fix the crash on exit in the tinyXPath code on
dsource, and it does the above a lot.

--bb

Recent messages in this thread
 
-# destructors (Current message) Bill Baxter 01-May-2007 03:19 am
.-# Re: destructors Daniel Keep 01-May-2007 05:39 am
.|-# Re: destructors Jarrett Billingsley 01-May-2007 09:31 am
.|.\# Re: destructors Daniel Keep 01-May-2007 09:50 am
.-# Re: destructors Daniel Giddings 01-May-2007 09:34 am
..-# Re: destructors Daniel Keep 01-May-2007 09:58 am
...|# Re: destructors Sean Kelly 01-May-2007 10:09 am
...-# Re: destructors Bill Baxter 01-May-2007 10:31 am
...|-# Re: destructors Jarrett Billingsley 01-May-2007 12:29 pm
...|.-# Re: destructors Bruno Medeiros 03-May-2007 06:50 am
...|..\# Re: destructors Jarrett Billingsley 03-May-2007 09:17 am
...-# Re: destructors Daniel Giddings 01-May-2007 07:43 pm
....-# Re: destructors Bill Baxter 01-May-2007 08:01 pm
....|-# Re: destructors Daniel Giddings 01-May-2007 08:24 pm
....|.-# Re: destructors Daniel Keep 01-May-2007 11:15 pm
....|..\# Re: destructors Daniel Giddings 01-May-2007 11:58 pm
....-# Re: destructors Daniel Keep 01-May-2007 08:04 pm
.....-# Re: destructors Bill Baxter 01-May-2007 08:22 pm
......\# Re: destructors Daniel Keep 01-May-2007 11:18 pm