Eclipse基本配置:编码、背景色、字体、字体颜色/大小、文字、注释、代码格式化
温馨提示:
本文最后更新于 2024年01月17日,已超过 340 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我。
1、编码
1.1、工作空间
Window→Preferences
1.2、文件类型
Window→Preferences
1.3、具体工程
右键→Properties
1.4、具体文件
右键→Properties
2、背景色、字体颜色
Window→Preferences
色调:85;
饱和度:120;
亮度:208 ;
以下配置自己斟酌
1、注释 Annotations : 107 147 186 浅蓝色
2、符号 Brackets : 255 128 0 橙色
3、类名 Classes : 0 80 50 加粗 深绿色
4、常量 Constant : 202 0 202 加粗 玫瑰红
5、弃用的成员 Deprecated members : 123 23 43 中划线 加粗 咖啡色
6、枚举 Enums : 128 0 255 紫色
7、变量 Fields : 128 0 128 深紫色
8、return关键字 Keyword 'return' : 255 0 85 红色 加粗
9、其他关键字 Keyword excluding 'return' : 207 46 125 玫瑰红 加粗
10、方法定义 Method declarations : 255 128 64 橙色加粗
11、方法 Methods : 0 48 96 深蓝
12、数字 Numbers :42 0 255 蓝色
13、运算符 Operators : 255 128 0 橙色
14、其他 Others :78 123 0 绿色
15、静态变量 Static fields : 33 0 189 蓝色 加粗
16、字符串 Strings : 132 26 138 紫色
3、字体、文字大小
苹果字体:Monaco
程序员字体1:Hermit
程序员字体2:Inconsolata
打包下载:https://download.csdn.net/download/jasonsen_wu666/11017012
Window→Preferences
4、注释
Window→Preferences
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="false" context="gettercomment_context" deleted="false" description="Comment for getter method" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.gettercomment" name="gettercomment">
/**
* @return get ${bare_field_name}
*/</template><template autoinsert="false" context="settercomment_context" deleted="false" description="Comment for setter method" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.settercomment" name="settercomment">
/**
* @param ${param} set ${bare_field_name}
*/</template><template autoinsert="false" context="constructorcomment_context" deleted="false" description="Comment for created constructors" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.constructorcomment" name="constructorcomment">
/**
* Description:
* @author wusp DateTime ${date} ${time}
* ${tags}
*/
</template><template autoinsert="false" context="filecomment_context" deleted="false" description="Comment for created Java files" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.filecomment" name="filecomment"/><template autoinsert="false" context="typecomment_context" deleted="false" description="Comment for created types" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.typecomment" name="typecomment">
/**
* Class Name: ${file_name}
* Description:
* @author wusp DateTime ${date} ${time}
* @email xxx@qq.com
* @version 1.0
* ${tags}
*/</template><template autoinsert="false" context="fieldcomment_context" deleted="false" description="Comment for fields" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.fieldcomment" name="fieldcomment">
/**
* Description:
* @author wusp DateTime ${date}
*/</template><template autoinsert="false" context="methodcomment_context" deleted="false" description="Comment for non-overriding methods" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.methodcomment" name="methodcomment">
/**
* Description:
* @author wusp DateTime ${date} ${time}
* ${tags}
*/</template><template autoinsert="false" context="overridecomment_context" deleted="false" description="Comment for overriding methods" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.overridecomment" name="overridecomment">
/**
* Description:
* @author wusp DateTime ${date} ${time}
* ${tags}
*/</template><template autoinsert="false" context="delegatecomment_context" deleted="false" description="Comment for delegate methods" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.delegatecomment" name="delegatecomment">
/**
* Description:
* @author wusp DateTime ${date}
* ${tags}
* ${see_to_target}
*/</template><template autoinsert="true" context="newtype_context" deleted="false" description="Newly created files" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.newtype" name="newtype">${filecomment}
${package_declaration}
${typecomment}
${type_declaration}</template><template autoinsert="true" context="classbody_context" deleted="false" description="Code in new class type bodies" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.classbody" name="classbody">
</template><template autoinsert="true" context="interfacebody_context" deleted="false" description="Code in new interface type bodies" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.interfacebody" name="interfacebody">
</template><template autoinsert="true" context="enumbody_context" deleted="false" description="Code in new enum type bodies" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.enumbody" name="enumbody">
</template><template autoinsert="true" context="annotationbody_context" deleted="false" description="Code in new annotation type bodies" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.annotationbody" name="annotationbody">
</template><template autoinsert="true" context="catchblock_context" deleted="false" description="Code in new catch blocks" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.catchblock" name="catchblock">// ${todo} Auto-generated catch block
${exception_var}.printStackTrace();</template><template autoinsert="true" context="methodbody_context" deleted="false" description="Code in created method stubs" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.methodbody" name="methodbody">// ${todo} Auto-generated method stub
${body_statement}</template><template autoinsert="true" context="constructorbody_context" deleted="false" description="Code in created constructor stubs" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.constructorbody" name="constructorbody">${body_statement}
// ${todo} Auto-generated constructor stub</template><template autoinsert="true" context="getterbody_context" deleted="false" description="Code in created getters" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.getterbody" name="getterbody">return ${field};</template><template autoinsert="true" context="setterbody_context" deleted="false" description="Code in created setters" enabled="true" id="org.eclipse.jdt.ui.text.codetemplates.setterbody" name="setterbody">${field} = ${param};</template></templates>
5、代码格式化
Window→Preferences
参考1:https://jingyan.baidu.com/article/642c9d34c14cbd644b46f75b.html
参考2:https://jingyan.baidu.com/article/d5a880eb6c4f7813f147ccef.html
参考3:https://jingyan.baidu.com/article/851fbc37e2c1433e1e15ab7c.html
参考4:https://jingyan.baidu.com/article/1612d500856cb1e20e1eeed5.html
正文到此结束
- 本文标签: Java
- 本文链接: https://www.idarks.com/article/10
- 版权声明: 本文由暗影原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权