我想配置VS2015調試器,以便當我加入某些代碼(F11)時,它會逐步完成某些功能。Visual studio 2015。如何*不*執行某些功能?
例如,假設有一個模板類SmartPointer,它具有重載的成員 - >。
如果我有下面的語句:
SmartPointer<SomeClass> ptr;
/* initialize ptr */
ptr->method();
調試器將步入智能指針::操作符 - >,退出,那麼到()方法。 我想直接進入method()。
這可能嗎?
編輯:所謂的重複不是一個,因爲它不與vs2013或者2015年
不知道是否有這樣做的好方法。我通常在函數的第一行設置一個斷點並運行到該點。 – NathanOliver
[有沒有辦法在Visual Studio中自動避免進入某些函數?](http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping- into-certain-functions-in-visu) – StoryTeller
我不認爲這是可能的。正如NathanOlivier所說,更好的方法是在你的方法()中設置一個斷點... –