Visual Studio 2017是否具有用于创建单行注释的特定键盘组合?

时间:2018-07-02 08:54:53

标签: c++ visual-studio comments commenting

我有一个问题。在IntelliJ IDEA中工作时,我使用Ctrl + /组合键创建单行注释。现在,我在Microsoft Visual Studio 2017中工作,只看到一种组合(Ctrl + K + C),但它会创建多行注释。例如:

(我想得到它)

//InputComponent->BindAxis("MoveForward", this, &ACustomPlayerController::MoveForward);
//InputComponent->BindAxis("MoveRight", this, &ACustomPlayerController::MoveRight);
//InputComponent->BindAxis("Turn", this, &ACustomPlayerController::Turn);

但是当我选择这些行并按“ Ctrl + K + C”时,我会得到:

InputComponent->Bi/*ndAxis("MoveForward", this, &ACustomPlayerController::MoveForward);
InputComponent->BindAxis("MoveRight", this, &ACustomPlayerController::MoveRight);
InputComponent->Bind*/Axis("Turn", this, &ACustomPlayerController::Turn);

MVS 2017是否具有用于创建单行注释的特定组合? 我在用C ++编程。 谢谢!

1 个答案:

答案 0 :(得分:0)

如果不选择整行,则会收到/* ... */条注释。如果选择整行,则会收到//样式的注释。

也请尝试不加选择地使用“ CTRL + K + C”,如示例所示,您应使用//样式注释掉当前行。

否则,请在Visual Studio中查找当前的键分配以获取注释。转到“工具>选项”,导航到“环境>键盘”,然后查找“ Edit.CommentSelection”的快捷方式。