IDEA IntelliJ 和使用包名和类名的代码片段
我想加快在每个类中创建一段具有以下定义的代码的过程:
private static String TAG = "%PACKAGE_NAME%.%CLASS_NAME%";
因此示例结果应如下所示:
package info.chrzanowski.project; // %PACKAGE_NAME%
public class Test { // %CLASS_NAME%
private static String TAG = "info.chrzanowski.project.Test";
}
我如何通过使用 Alt+Insert
来实现这一目标(生成弹出窗口)或以其他方式?
I'd like to make quicker a process of creating in every class a piece of code with following definition:
private static String TAG = "%PACKAGE_NAME%.%CLASS_NAME%";
so the sample result should looking like:
package info.chrzanowski.project; // %PACKAGE_NAME%
public class Test { // %CLASS_NAME%
private static String TAG = "info.chrzanowski.project.Test";
}
How can I achieve that with for example using Alt+Insert
(Generate popup) or in some else way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑
设置|文件模板|类
,请参阅相关文档部分:Edit
Settings | File Templates | Class
, refer to the related documentation sections:或编辑
相关文档:
创建和应用实时模板
Or edit
related docs:
Creating and apllying live templates