[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: source code, class LinkHead
On Mon, 26 Jul 1999, Mickael Vera wrote:
> Hi
>
> I'm starting, reading sources and I found something i don't understand
> in class LinkHead
>
> The member link_entry_ isn't initialized by the constructor (and it
> contains pointers)
> My question is :
> "How is this member initialized ?"
>
This member is not initialized. It is never directly referenced-- it only
is referenced through the head of the list of links. Upon first insertion
into a linked list, the pointers are set correctly.
See Chapter 16.3 of the documentation for more information.
Tom