do you know good books/sites about creating custom allocators, streams and iterators? - c++

This is a discussion on do you know good books/sites about creating custom allocators, streams and iterators? - c++ ; for me, these items are in the 'tricky zone' of C++ does anyone know good material with that? (dealing with subtle details, pitfalls, good practices...) anything like the Effective series from Meyers would be fine thanks! Diego HP...

+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12

do you know good books/sites about creating custom allocators, streams and iterators?

  1. Default do you know good books/sites about creating custom allocators, streams and iterators?

    for me, these items are in the 'tricky zone' of C++

    does anyone know good material with that? (dealing with subtle
    details, pitfalls, good practices...)

    anything like the Effective series from Meyers would be fine

    thanks!

    Diego
    HP


  2. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    Diego Martins wrote:
    > for me, these items are in the 'tricky zone' of C++
    >
    > does anyone know good material with that? (dealing with subtle
    > details, pitfalls, good practices...)


    Have you perused "C++ Standard Library" by Josuttis? As for the
    streams, there was a book by Angelika Langer and Klaus Kreft, I
    heard good things about it. Dietmar Kuehl has also written on
    the same or similar subject, IIRC.

    > anything like the Effective series from Meyers would be fine


    He's got some iterator tips in "Effective STL", check it out.

    V
    --
    Please remove capital 'A's when replying by e-mail
    I do not respond to top-posted replies, please don't ask



  3. Default Re: do you know good books/sites about creating custom allocators,streams and iterators?

    On 2007-08-27 19:21, Diego Martins wrote:
    > for me, these items are in the 'tricky zone' of C++
    >
    > does anyone know good material with that? (dealing with subtle
    > details, pitfalls, good practices...)
    >
    > anything like the Effective series from Meyers would be fine


    Don't know about custom allocators, since it's not something most C++
    programmers have to write, but section 19.4 in TC++PL talks about it.

    For streams and iterators any good book should do, iterators are central
    to the standard library so a book that does not explain them would be
    useless. Once again, TC++PL have chapters about those things.

    --
    Erik Wikström

  4. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    On Aug 27, 2:29 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    > Diego Martins wrote:
    > > for me, these items are in the 'tricky zone' of C++

    >
    > > does anyone know good material with that? (dealing with subtle
    > > details, pitfalls, good practices...)

    >
    > Have you perused "C++ Standard Library" by Josuttis?


    yeah! I have this book. It is excellent as a STL containers and
    algorithms reference guide

    but it does not focus on custom streams, iterators and allocators

    > As for the
    > streams, there was a book by Angelika Langer and Klaus Kreft, I
    > heard good things about it. Dietmar Kuehl has also written on
    > the same or similar subject, IIRC.


    nice! do you know the book names?

    > > anything like the Effective series from Meyers would be fine

    >
    > He's got some iterator tips in "Effective STL", check it out.


    I want more
    (but the Effective series is a must have! I have only the Effective
    STL in book, but I've read them all on my college library)

    thanks, anyway
    Diego


  5. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    On Aug 27, 2:39 pm, Erik Wikström <Erik-wikst...@telia.com> wrote:
    > On 2007-08-27 19:21, Diego Martins wrote:
    >
    > > for me, these items are in the 'tricky zone' of C++

    >
    > > does anyone know good material with that? (dealing with subtle
    > > details, pitfalls, good practices...)

    >
    > > anything like the Effective series from Meyers would be fine

    >
    > Don't know about custom allocators, since it's not something most C++
    > programmers have to write, but section 19.4 in TC++PL talks about it.
    >
    > For streams and iterators any good book should do, iterators are central
    > to the standard library so a book that does not explain them would be
    > useless. Once again, TC++PL have chapters about those things.


    thanks! I will give a look on this book

    user experience is appreciated in this thread too (the best knowlege
    on my opinion)


  6. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    Diego Martins wrote:
    > On Aug 27, 2:29 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    >> As for the
    >> streams, there was a book by Angelika Langer and Klaus Kreft, I
    >> heard good things about it. Dietmar Kuehl has also written on
    >> the same or similar subject, IIRC.

    >
    > nice! do you know the book names?
    > [..]


    You're kidding, right? Can't you google?

    V
    --
    Please remove capital 'A's when replying by e-mail
    I do not respond to top-posted replies, please don't ask



  7. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    On Aug 27, 2:57 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    > Diego Martins wrote:
    > > On Aug 27, 2:29 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    > >> As for the
    > >> streams, there was a book by Angelika Langer and Klaus Kreft, I
    > >> heard good things about it. Dietmar Kuehl has also written on
    > >> the same or similar subject, IIRC.

    >
    > > nice! do you know the book names?
    > > [..]

    >
    > You're kidding, right? Can't you google?


    not kidding. serious! you might give me valuable information about the
    edition you read, for example

    there is more than a book written by Angelika Langer and Klaus Kreft
    with IOstreams...

    and I couldn't find a book of Dietman Kuehl. I will try to read some
    thing from his page, instead
    http://www.inf.uni-konstanz.de/~kuehl/

    your advice is good and I guess you are a good man.
    but the excess of coffee must be making you to see newbies everywhere
    in comp.lang.c++ try to relax


  8. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    Diego Martins wrote:
    > On Aug 27, 2:57 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    >> Diego Martins wrote:
    >>> On Aug 27, 2:29 pm, "Victor Bazarov" <v.Abaza...@comAcast.net>
    >>> wrote:
    >>>> As for the
    >>>> streams, there was a book by Angelika Langer and Klaus Kreft, I
    >>>> heard good things about it. Dietmar Kuehl has also written on
    >>>> the same or similar subject, IIRC.

    >>
    >>> nice! do you know the book names?
    >>> [..]

    >>
    >> You're kidding, right? Can't you google?

    >
    > not kidding. serious! you might give me valuable information about the
    > edition you read, for example


    I didn't read it. I had no need for it. However, other folks have
    recommended it, and at the time of my reply the book review section of
    ACCU.org was unavailable. Did you simply miss my "I heard good things
    about it"?

    I'd given you as much information as I could.

    > there is more than a book written by Angelika Langer and Klaus Kreft
    > with IOstreams...


    Hey, you already know more than I do. Try comparing the books using
    review section on Amazon, see whether you can find the preface for them
    and read them, perhaps you can get something from there...

    > and I couldn't find a book of Dietman Kuehl. I will try to read some
    > thing from his page, instead
    > http://www.inf.uni-konstanz.de/~kuehl/


    Then apparently I didn't RC. Now that I'm thinking about it, he did
    write a streams library, or so it seems... Not a book... If you've
    found his web page, you've found the right place to find out more.

    > your advice is good and I guess you are a good man.
    > but the excess of coffee must be making you to see newbies everywhere
    > in comp.lang.c++ try to relax


    Ah, that's what it was, my coffee drinking. I couldn't have figured
    it out without you. Thanks, I will try to relax. As soon as I retire,
    I guess. In the mean time, "if it walks like a newbie and quacks like
    a newbie..."

    V
    --
    Please remove capital 'A's when replying by e-mail
    I do not respond to top-posted replies, please don't ask



  9. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    On Aug 27, 4:46 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
    > Ah, that's what it was, my coffee drinking. I couldn't have figured
    > it out without you. Thanks, I will try to relax. As soon as I retire,
    > I guess. In the mean time, "if it walks like a newbie and quacks like
    > a newbie..."


    duck typing is off-topic in C++ :P
    (and I hate smalltalk and Ruby)


  10. Default Re: do you know good books/sites about creating custom allocators, streams and iterators?

    anyone?

    I am bugging since it is extremely difficult finding good material
    about these tricky topics!
    Specially the allocator thing!


+ Reply to Thread
Page 1 of 2 1 2 LastLast

Similar Threads

  1. Does anyone know of some good classic asp sites?
    By Application Development in forum Inetserver
    Replies: 4
    Last Post: 02-11-2007, 02:08 AM
  2. Good Game Sites
    By Application Development in forum Java-Games
    Replies: 4
    Last Post: 10-28-2004, 10:24 AM
  3. Good .Net Books
    By Application Development in forum DOTNET
    Replies: 3
    Last Post: 07-31-2004, 12:17 AM
  4. Good Books
    By Application Development in forum basic.visual
    Replies: 3
    Last Post: 05-19-2004, 08:34 AM