[idea download and installation] Relevant configurations for software use

Download URL:  IntelliJ IDEA: The Capable & Ergonomic Java IDE by JetBrains

 

Click Download and select other versions

The version I downloaded is 2019.1.4.x64 (this version does not require an account registration, it is more convenient for us to try it for free for 30 days)

My installation package storage path is programfiles→idea under the D drive

Click to install. My installation path is develop→idea under the D drive.

Check the following options

All you have to do is change the installation path and check the box above, then click next.

After installation, open idea. In order to make it faster and more convenient to use, you need to make some settings.

1. Font style, size, line spacing

 2. Color and slant of single-line and multi-line comments

 3. Automatic package guidance

 4. Automatic prompts are not case sensitive

5. Set background image

6. Documentation comments on usage methods

/ **

  *@param:$params$

  *@return:$returns$

*/

Template adds default value

Default value of params:

groovyScript("def result=''; def params=\"${_1}\".replaceAll('[\\\\[|\\\\]|\\\\s]', '').split(',').toList(); for(i = 0; i < params.size(); i++) {result+='' + params[i] + ((i < params.size() - 1) ? '\\n':'')}; return result", methodParameters()) 

Guess you like

Origin blog.csdn.net/xjj1128/article/details/127611859