Visual Studio 2017游标奇怪的行为

时间:2018-08-29 21:16:37

标签: c++ visual-studio

我可能已经在Visual Studio中更改了一些设置,但是现在,如果我编写这样的代码,然后编写注释(对于Elem elem)并向下移动光标,则光标将移至与原来相同的列前一行(而不是在next之后;)

#include <string>
using std::string;

typedef string Elem;

class CircleListNode {
 private:
  Elem elem; // the element of the list
  CircleListNode* next;                |//<-where cursor moves 

 public:
  CircleListNode();
  ~CircleListNode();                        
};

我将如何更改?

0 个答案:

没有答案