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.

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

     

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

  • 相关阅读:
    2013-1-17 打开/关闭默认共享的命令
    2013-1-1遍历文件夹,改名文件
    2012-07-02 无边框最大化窗体
    2012-04-12 工具箱中添加自定义控件的方法
    2012-4-2 通过MdiParent设置窗体最前
    2012-2-7列举及终止进程
    python with as 以上这段代码执行完毕后,就算在处理过程中出问题了,文件 f 总是会关闭。
    终于好了 ipython 里执行dos命令 显示结果却显示在kernel界面里 搞定了
    Win7开启远程桌面
    哪位有方法把 dd/mm/yyyy的字符串 格式化成yyyy-mm-dd
  • 原文地址:https://www.cnblogs.com/vip-deng-vip/p/8175925.html
Copyright © 2011-2022 走看看