CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: razzle

Search: Search took 0.07 seconds.

  1. Re: What is the equivalence to List in Java for C++?

    Yes, but this "wrapping" takes place automatically in Java by way of so called boxing/unboxing. It's a coersion polymorphism that's part of the Java language.

    So it's trinity that makes void* and...
  2. Re: What is the equivalence to List in Java for C++?

    So you feel superior indeed.

    Interesting. I thought your tone was unintentional.

    But then reply to the questions I asked you in my previous post if you dare and I'll cut you to size. It's a...
  3. Re: What is the equivalence to List in Java for C++?

    You're allowing yourself a superior and condescending tone.

    If you're such a genious why don't you enlighten us mere mortals as to why anyone should select C++ over Java if it isn't for the...
  4. Re: What is the equivalence to List in Java for C++?

    --- doubleposting by mistake ---
  5. Re: What is the equivalence to List in Java for C++?

    And sometimes even if you're used to object oriented C++ no amount of restructuring can factor out a downcast. You simply have to deal with "a pointer to an unknown type" (the C++ Programming...
  6. Re: What is the equivalence to List in Java for C++?

    Do they have desks at McDonalds now? Is it to raise the status of burger flipping? Just kidding, but you're jumping to conclusions. Did you see a design? No? So how can it be bad?

    There's nothing...
  7. Re: What is the equivalence to List in Java for C++?

    List in Java is an interface. The two most common concrete implementations of List are ArrayList and LinkedList. The first corresponds with std::vector and the second with std::list.

    The notion of...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured