zoukankan      html  css  js  c++  java
  • phpStorm

    ==============================================================================================================================================

    Welcome!
    You can quickly get familiar with the main features of the IDE by reading these tips. You can try out the features described in the tips while this dialog stays open on the screen.
    If you close the dialog, you can always get back to it using Help | Tip of the Day in the main menu.

      ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     The Code Completion feature lets you quickly complete different kinds of statements in the code. For example, start typing a class name and press Ctrl+空格 to complete it. When multiple choices are available, they are shown in the lookup list.

     ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     You can quickly find all places where a particular class, method or variable is used in the whole project by positioning the caret at the symbol's name or at its usage in code and pressing Alt+F7 (Find Usages in the popup menu).

      ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     

    To quickly see the documentation for the class or method used at the editor's caret, press Ctrl+Q (View | Quick Documentation).

       ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     

    To navigate to the declaration of a class, method or variable used somewhere in the code, position the caret at the usage and press Ctrl+B. You can also click the mouse on usages with the Ctrl key pressed to jump to declarations.

      ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

    You can quickly navigate in the currently edited file with Ctrl+F12 (Navigate | File Structure).
    It shows the list of members of the current class. Select an element you want to navigate to and press the Enter key or the F4 key.
    To easily locate an item in the list, just start typing its name.

      ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     

    You can easily rename your classes, methods and variables with automatic correction of all places where they are used.
    To try it, place the caret at the symbol you want to rename, and press Shift+F6 (Refactor | Rename). Type the new name in the popup window that appears, or select one of the suggested names, and press Enter.

       ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

    When using Code Completion, you can accept the currently highlighted selection in the popup list with Tab key.
    Unlike accepting with the Enter key, the selected name will overwrite the rest of the name to the right of the caret. This can be especially useful for replacing one method or variable name with another.

       ---------------------------------------------------------------------------------------------------------------------------------------------------------------------

     

     To quickly select the currently edited element (class, file, method or field) in any view (Project view, Structure view or other), press Alt+F1.

     ----------------------------------------------

     

     ==============================================================================================================================================

  • 相关阅读:
    IDEA导入外部jar包步骤
    将本地新建工程推到git上
    【转】Memcached与Redis有什么区别
    Redis
    JavaScript-Tool-lhgDialog-js:lhgdialog.js
    信息安全-HTTP:HTTP 身份验证
    信息安全-HTTP:HTTP访问控制(CORS)
    JavaScript-Tool-lhgDialog:框架示例
    JavaScript-Tool-lhgDialog:动画示例-源代码
    JavaScript-Tool-lhgDialog:动画示例
  • 原文地址:https://www.cnblogs.com/vip-deng-vip/p/8175925.html
Copyright © 2011-2022 走看看