CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 65

Threaded View

  1. #27
    Join Date
    Feb 2003
    Location
    Iasi - Romania
    Posts
    8,241

    Re: CArray vs. std::vector

    Quote Originally Posted by nuzzle View Post
    A lightning fast application in 100% standard C++ is much better.
    Indeed, somethng like
    Code:
    #include <iostream>
    int main()
    {
       std::cout << "Hello world!" << std::endl;
       return 0;
    }
    ...is much better than the equivalent "non-standard" MFC implementation.
    However, if you want to do more, like showing something user friendly, print something, let user push something and so on, the "100% standard C++" doesn't help you so much.

    Quote Originally Posted by nuzzle View Post
    They wouldn't get away with a crappy implementation. And if Microsoft implemented it themselves I don't think they would have anything to gain from making their C++ standard libraries inferior on purpose to promote the MFC?
    Yeah, I know... The Microsoft's Mondial Conspiracy... Kelly, the Al Bundy's blonde daughter, has told me about it...

    Quote Originally Posted by nuzzle View Post
    I've heard claims like this over and over again in forums and each time when the benchmarks are finally posted the only thing they prove conclusively is that the poster doesn't know what he's doing.
    "Life on Venus is much more comfortable than life on Mercury"
    Is that true? I think, you can just presume but don't exactly know until make a try.
    Last edited by ovidiucucu; March 5th, 2011 at 05:00 AM. Reason: typo
    Ovidiu
    "When in Rome, do as Romans do."
    My latest articles: https://codexpertro.wordpress.com/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured