我可能已经在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();
};
我将如何更改?