如何在 Eclipse 中设置新的类模板?
我主要编写 Android 程序,我(以及我确信的其他 Android 程序员)坚持使用的东西之一是 android.util.Log
。我创建的每个类都有一个
private static final String TAG = "ClassName";
标签,我在创建该类后立即编写该标签,然后再进行其他操作。因此,由于我总是创建标签,因此我认为将其作为空类模板的一部分可以节省我的时间(尽管数量很少)。我的问题是,我不知道如何或在哪里创建代码模板。谁能告诉我如何管理和创建它们?
I mainly program Android, and one of the things I (and the rest of android programmers I'm sure) use with tenacity is android.util.Log
. Every class I create has a
private static final String TAG = "ClassName";
tag that I write up as soon as I create the class, before I work on anything else. So, since I always create the tag I figured it would just save me on time (albeit a small amount) to just have it as part of the template for an empty class. My problem is, I don't know how or where to create code templates. Can anyone inform me on how to manage and create them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所指的在 Eclipse 中称为“代码模板”。
转到 Eclipse Preferences,搜索“templates”,您将在 Java -> 下找到它们。代码风格->代码模板。
What you're referring to are called "code templates" in Eclipse.
Go to Eclipse Preferences, search for "templates", you'll find them under Java -> Code Style -> Code Templates.