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

前端 未结 9 1713
被撕碎了的回忆
被撕碎了的回忆 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 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,

提交回复
热议问题