Eclipse添加codeFormat模板(见附件)。
Windows--Preference--Java--Code Style--Format, import附件中的模板。
--Java--Editor--Save Actions, 勾选Format source code,在编辑保存的时候就会自动format代码。相当方便。
格式如下:
/** * A sample source file for the code formatter preview */ package mypackage; import java.util.LinkedList; public class MyIntStack { private final LinkedList fStack; public MyIntStack() { fStack = new LinkedList(); } public int pop() { return ((Integer)fStack.removeFirst()).intValue(); } public void push(int elem) { fStack.addFirst(new Integer(elem)); } public boolean isEmpty() { return fStack.isEmpty(); } }
http://files.cnblogs.com/files/moleme/codeformat.rar
时间: 2024-10-16 13:20:59