Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I admit I have no deep understanding of D at this point, my knowledge relies purely on what documentation I have read and examples I have tried; albeit both are difficult as good documentation is hard to find.

My question is thus, in C++ you could rely on the RAII idiom to call the destructor of objects you had defined on leaving their local scope. Can you in D?

I understand D is a garbage collected language, and that it also supports RAII. What I don't undestand, is why the following code does not cleanup the memory as it leaves a scope.

import std.stdio;

struct vector3b {
    byte a, b, c;
};

void loop() {
    printf("Loop");
    loop();
}

void main() {
    vector3b vec;
    vec.a = 5;
    vec.b = 6;
    vec.c = 2;

    vector3b pos = {0, 0, 1};
    {
        const int len = 1000 * 1000 * 750;

        vector3b[] dynarray;
        dynarray.length = len;
        for (int i = 0; i < len; ++i) dynarray[i] = pos;

        printf("%i", dynarray.length);
    }

    loop();
}

The loop was put there so as to keep the program open so I could watch my memory graph. A comparison of the same program set up in C++ (albeit, using a std::vector), is shown below.

C++ v D

Shortly after entering the loop, I would quit the program, but it can be seen that C++ immediately cleaned up the memory after allocation (as expected, however the refresh rate makes it appear as if less memory was allocated), whereas D kept it even though it had left scope.

Surely this could cause some gotchas? When does the GC cleanup?

PS: I was impressed that this operation took the same amount of time in C++ and D with appropriate flags.

EDIT:

The same problem occurs on this (non-dynamic) array.

{
    const int len = 1000 * 1000 * 750;

    vector3b[len] dynarray;
    for (int i = 0; i < len; ++i) dynarray[i] = pos;

    printf("%i", dynarray.length);
}
share|improve this question

2 Answers

up vote 4 down vote accepted

No, you cannot assume that the garbage collector will collect your object at any point in time.

There is, however, a delete keyword (as well as a scope keyword) that can delete an object deterministically.

scope is used like:

{
    scope auto obj = new int[5];
    //....
} //obj cleaned up here

and delete is used like in C++ (there's no [] notation for delete).

There are some gotcha's, though:

  • It doesn't always work properly (I hear it doesn't work well with arrays)

  • The developers of D (e.g. Andrei) are intending to remove them in later versions, because it can obviously mess up things if used incorrectly. (I personally hate this, given that it's so easy to screw things up anyway, but they're sticking with removing it, and I don't think people can convince them otherwise although I'd love it if that was the case.)

  • In its place, there is already a clear method that you can use, like arr.clear(); however, I'm not quite sure what it exactly does yet myself, but you could look at the source code in object.d in the D runtime if you're interested.


As to your amazement: I'm glad you're amazed, but it shouldn't be really surprising considering that they're both native code. :-)

share|improve this answer
If I cannot assume the GC will cleanup unused memory, how can I assume my program won't run out of memory straight away? For example, if I packed in two of the 2.25GB blocks (different scopes) of my vector3b dynamic array, I ran out of memory instantly, even though the GC should have recognized the first as unused (per RAII)? – Daniel May 24 '11 at 4:50
Also, why does the same problem occur for non-dynamic arrays, should they not follow RAII? Even though, due to the size, they may be Heap allocated. – Daniel May 24 '11 at 4:56
1  
@Daniel: No I mean, you can't assume it will happen at any particular time; it'll happen sometime, but you don't know when. Also, it depends on what you mean by non-dynamic arrays. What you're seeing right now are not arrays, but they're slices (which are just a length-pointer pair). The arrays themselves are in heap memory, and your slices behave just like any other variables -- they don't have a destructor, but if they did, it would run when they were deallocated. So if you use the Array type, it'll destroy itself because it has a destructor. – Mehrdad May 24 '11 at 4:59
@Daniel: See this page for an explanation on how slices work. – Mehrdad May 24 '11 at 5:01
2  
Both scope and delete are going to be deprecated in D2. – he_the_great May 24 '11 at 15:45
show 6 more comments

scope declarations are going in D2, so I'm not terribly certain on the semantics, but what I'd imagine is happening is that scope T[] a; only allocates the array struct on the stack (which needless to say, already happens, regardless of scope). As they are going, don't use scope (using scope(exit) and friends is different -- keep using them).

Dynamic arrays always use the GC to allocate their memory -- there's no getting around that. If you want something more deterministic, using std.container.Array would be the simplest manner, as I think you could pretty much drop it in where your scope vector3b array is:

Array!vector3b array

Just don't bother setting the length to zero -- the memory will be free'd once it goes out of scope (Array uses malloc/free from libc under the hood).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.