当前位置:网站首页>IDEA的模板(Templates)
IDEA的模板(Templates)
2022-08-03 12:38:00 【Redamancy06】
4.模板
4.1Live Templates(实时代码模板)功能介绍
它的原理就是配置一些常用代码字母缩写,在输入简写时可以出现你预定义的固定模式的代码,使得开发效率大大提高,同时也可以增加个性化。最简单的例子就是在Java中输入sout会出现System.out.println();
官方介绍 Live Templates:
https://www.jetbrains.com/help/idea/using-live-templates.html
4.2已有的常用模板
Postfix Completion 默认如下:
Live Templates 默认如下:
二者的区别:Live Templates可以自定义,而Postfix Completion不可以。同时,有些操作二者都提供了模板,Postfix Templates较Live Templates能快0.01秒
4.3举例
4.3.1psvm或者main:可生成main方法
4.3.2sout : System.out.println() 快捷输出
类似的:
soutp=System.out.println("方法形参名 = " + 形参名);
soutv=System.out.println("变量名 = " + 变量);
soutm=System.out.println(“当前类名.当前方法”);
“abc”.sout => System.out.println(“abc”);
4.3.3fori : 可生成for循环
类似的:
iter:可生成增强for循环
itar:可生成普通for循环
4.3.4list.for : 可生成集合list的for循环
List list = new ArrayList();
输入: list.for 即可输出
for(String s:list){
}
又如:list.fori 或 list.forr
4.3.5 ifn:可生成 if(xxx = null)
类似的:
inn:可生成 if(xxx != null) 或 xxx.nn 或 xxx.null
4.3.6prsf:可生成 private static final
类似的:
psf:可生成 public static final
psfi:可生成 public static final int
psfs:可生成 public static final String
4.4修改现有模板:Live Templates
如果对于现有的模板,感觉不习惯、不适应的,可以修改:
通过调用out调用println方法不习惯,可以改为跟Eclipse一样,使用syso调取。
4.5自定义模板
IDEA提供了很多现成的Templates。但你也可以根据自己的需要创建新的Template
先定义一个模板的组
选中自定义的模板组,点击”+”来定义模板
- Abbreviation:模板的缩略名称
- Description:模板的描述
- Template text:模板的代码片段
- 应用范围。比如点击Define。选择如下:
可以如上的方式定义个测试方法,然后在java类文件中测试即可。
边栏推荐
- 可视化图表设计Cookbook
- 特征降维学习笔记(pca和lda)(1)
- An工具介绍之骨骼工具
- 技术分享 | 接口自动化测试如何搞定 json 响应断言?
- php microtime encapsulates the tool class, calculates the running time of the interface (breakpoint)
- R语言ggplot2可视化:使用ggpubr包的ggsummarystats函数可视化箱图(通过ggfunc参数设置)、在可视化图像的下方添加描述性统计结果表格
- 【Verilog】HDLBits题解——Circuits/Sequential Logic/Latches and Flip-Flops
- Database basics one (MySQL) [easy to understand]
- How can I get a city's year-round weather data for free?Precipitation, temperature, humidity, solar radiation, etc.
- __unaligned修饰指针
猜你喜欢
shell编程条件语句
nacos app
An动画基础之按钮动画与基础代码相结合
Unsupervised learning KMeans notes and examples
图像融合SDDGAN文章学习
Station B responded that "HR said that core users are all Loser": the interviewer was persuaded to quit at the end of last year and will learn lessons to strengthen management
【实战技能】单片机bootloader的CANFD,I2C,SPI和串口方式更新APP视频教程(2022-08-01)
特征降维学习笔记(pca和lda)(1)
【深度学习】高效轻量级语义分割综述
Jmeter使用
随机推荐
【实战技能】单片机bootloader的CANFD,I2C,SPI和串口方式更新APP视频教程(2022-08-01)
899. 有序队列
自律成就自己
Image fusion DDcGAN study notes
层次分析法
php microtime encapsulates the tool class, calculates the running time of the interface (breakpoint)
GameFi 行业下滑但未出局| June Report
YOLOv5 training data prompts No labels found, with_suffix is used, WARNING: Ignoring corrupted image and/or label appears during yolov5 training
为冲销量下探中低端市场,蔚来新品牌产品定价低至10万?
Feature Engineering Study Notes
[Verilog] HDLBits Problem Solution - Circuits/Sequential Logic/Latches and Flip-Flops
nacos应用
安防监控必备的基础知识「建议收藏」
shell编程之条件语句
【Verilog】HDLBits题解——验证:阅读模拟
622. 设计循环队列
shell编程条件语句
特征工程学习笔记
数据库系统原理与应用教程(075)—— MySQL 练习题:操作题 151-159(十九):综合练习
【精品必知】Pod生命周期