Is there a C++ IDE which handles templates well?

前端 未结 9 1715
被撕碎了的回忆
被撕碎了的回忆 2021-02-13 16:22

Every IDE I\'ve tried fails to provide code-completion when something template-related is used. For example,

boost::shared_ptr ptr;
ptr->[curso         


        
                      
相关标签:
9条回答
  • 2021-02-13 16:52

    Visual Studio 2010 has significantly improved in this area. There is an open beta going on, you should check it out.

    0 讨论(0)
  • 2021-02-13 16:55

    I've always use Eclipse C/C++ IDE. It supports code completion as well :)

    0 讨论(0)
  • 2021-02-13 17:02

    G'day,

    As an aside, I'd highly recommend Scott Meyers's excellent "Effective STL" book.

    Item 49 "Learn to decipher STL-related compiler diagnostics" is worth the price of admission alone! The info therein is also applicable to decoding complex template related diagnostics beyond STL, e.g. for Boost.

    Have fun.

    BTW +1 for an interesting question.

    cheers,

    0 讨论(0)
提交回复
热议问题