久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <small id='vglo2'></small><noframes id='vglo2'>

  • <legend id='vglo2'><style id='vglo2'><dir id='vglo2'><q id='vglo2'></q></dir></style></legend>
    <i id='vglo2'><tr id='vglo2'><dt id='vglo2'><q id='vglo2'><span id='vglo2'><b id='vglo2'><form id='vglo2'><ins id='vglo2'></ins><ul id='vglo2'></ul><sub id='vglo2'></sub></form><legend id='vglo2'></legend><bdo id='vglo2'><pre id='vglo2'><center id='vglo2'></center></pre></bdo></b><th id='vglo2'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='vglo2'><tfoot id='vglo2'></tfoot><dl id='vglo2'><fieldset id='vglo2'></fieldset></dl></div>
    1. <tfoot id='vglo2'></tfoot>

          <bdo id='vglo2'></bdo><ul id='vglo2'></ul>

        Visual Studio 2010 中的 C++ 訪問修飾符自動縮進慢慢

        C++ access modifier auto indentation in Visual Studio 2010 slowly driving me crazy - can it be changed?(Visual Studio 2010 中的 C++ 訪問修飾符自動縮進慢慢讓我發(fā)瘋 - 可以更改嗎?) - IT屋-程序員軟件開發(fā)技術(shù)分享社

            • <legend id='331sY'><style id='331sY'><dir id='331sY'><q id='331sY'></q></dir></style></legend>
                <i id='331sY'><tr id='331sY'><dt id='331sY'><q id='331sY'><span id='331sY'><b id='331sY'><form id='331sY'><ins id='331sY'></ins><ul id='331sY'></ul><sub id='331sY'></sub></form><legend id='331sY'></legend><bdo id='331sY'><pre id='331sY'><center id='331sY'></center></pre></bdo></b><th id='331sY'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='331sY'><tfoot id='331sY'></tfoot><dl id='331sY'><fieldset id='331sY'></fieldset></dl></div>

                • <bdo id='331sY'></bdo><ul id='331sY'></ul>

                  <small id='331sY'></small><noframes id='331sY'>

                  <tfoot id='331sY'></tfoot>
                    <tbody id='331sY'></tbody>
                  本文介紹了Visual Studio 2010 中的 C++ 訪問修飾符自動縮進慢慢讓我發(fā)瘋 - 可以更改嗎?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  限時送ChatGPT賬號..

                  在 Visual Studio 中編程 C++ 時,它堅持在訪問修飾符上給我這些可怕的縮進 - 如果有人真的喜歡這種方式,我表示哀悼;)(開玩笑的伙計們!)

                  When programming C++ in Visual Studio, it insists on giving me these awful indentations on access modifiers - my condolences if anyone actually likes them this way ;) (a joke folks!)

                  public class MyClass
                  {
                  public:
                     MyClass();
                     ~MyClass();
                     int wowAnInt();
                  }
                  

                  不用說,我想要這個:

                  public class MyClass
                  {
                      public:
                         MyClass();
                         ~MyClass();
                         int wowAnInt();
                  } 
                  


                  有什么方法可以使用任何東西(我有 ReSharper 和 Highlighter)或香草 VS 來實現(xiàn)這一點?


                  Is there any way to achieve this using anything (I've got ReSharper and Highlighter) or perhaps vanilla VS?

                  推薦答案

                  與內(nèi)置的 Visual Studio 編輯器設(shè)置最接近的是將縮進模式從智能"更改為塊"(工具 -> 選項-> 文本編輯器 -> C/C++ -> 制表符 -> 縮進).

                  The closest you can get with the built-in Visual Studio editor settings is to change the indenting mode from "Smart" to "Block" (Tools -> Options -> Text Editor -> C/C++ -> Tabs -> Indenting).

                  當(dāng)你這樣做時,你可以隨意縮進任何你喜歡的東西,你只是失去了自動縮進".基本上,每當(dāng)您按 [enter] 時,新行都會縮進與前一行相同數(shù)量的制表位/空格,并且不會自動重新格式化行以使它們對齊.

                  When you do this, you can indent anything however you like, you just lose the "automatic indenting." Basically, whenever you press [enter] the new line will be indented the same number of tab stops / spaces as the previous line and it won't automatically reformat lines to get them to line up.

                  這篇關(guān)于Visual Studio 2010 中的 C++ 訪問修飾符自動縮進慢慢讓我發(fā)瘋 - 可以更改嗎?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  Why do two functions have the same address?(為什么兩個函數(shù)的地址相同?)
                  Why the initializer of std::function has to be CopyConstructible?(為什么 std::function 的初始化程序必須是可復(fù)制構(gòu)造的?)
                  mixing templates with polymorphism(混合模板與多態(tài)性)
                  When should I use the keyword quot;typenamequot; when using templates(我什么時候應(yīng)該使用關(guān)鍵字“typename?使用模板時)
                  Dependent name resolution amp; namespace std / Standard Library(依賴名稱解析命名空間 std/標準庫)
                  gcc can compile a variadic template while clang cannot(gcc 可以編譯可變參數(shù)模板,而 clang 不能)

                        <legend id='j4xmM'><style id='j4xmM'><dir id='j4xmM'><q id='j4xmM'></q></dir></style></legend>
                        1. <tfoot id='j4xmM'></tfoot>
                          <i id='j4xmM'><tr id='j4xmM'><dt id='j4xmM'><q id='j4xmM'><span id='j4xmM'><b id='j4xmM'><form id='j4xmM'><ins id='j4xmM'></ins><ul id='j4xmM'></ul><sub id='j4xmM'></sub></form><legend id='j4xmM'></legend><bdo id='j4xmM'><pre id='j4xmM'><center id='j4xmM'></center></pre></bdo></b><th id='j4xmM'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='j4xmM'><tfoot id='j4xmM'></tfoot><dl id='j4xmM'><fieldset id='j4xmM'></fieldset></dl></div>

                          • <bdo id='j4xmM'></bdo><ul id='j4xmM'></ul>
                              <tbody id='j4xmM'></tbody>

                            <small id='j4xmM'></small><noframes id='j4xmM'>

                            主站蜘蛛池模板: 91视频观看| 国产黄色免费 | 国产aaa| 亚洲精品一区中文字幕乱码 | 亚洲天堂一区 | 亚洲精品一区二区在线观看 | 亚洲天天| 欧美精品在线免费观看 | 国产精品一区二区三区免费 | 欧美黑人一区二区三区 | 精品在线一区 | 亚洲一区视频在线 | 亚洲久久久 | 欧美亚洲一区 | 小日子的在线观看免费第8集 | 欧美成人毛片 | 福利片国产 | 日韩小视频在线观看 | 亚洲免费成人 | 日韩精品久久久久久免费 | 国产丝袜一区 | 成人短视频在线观看 | 久操福利| 中文字幕免费av | 简单av网| 国产午夜在线观看 | 在线免费观看黄色片 | 欧美黄色网| 精品久久网站 | 日本中文在线观看 | 亚洲精品中文字幕乱码三区91 | 色老板免费视频 | 黄在线观看 | 亚洲国产福利 | 国产一区二区在线看 | 日本少妇做爰全过程毛片 | 免费精品 | 日韩精品久久久久久久酒店 | 亚洲不卡 | 精品国产一区二区三区久久久蜜月 | 欧美成人午夜 |