添加codeformat模板的Eclipse(见附件)。
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(); }}
本文是转载内容,我们尊重原作者对文章的权利。如有内容错误或侵权行为,请联系我们更正或删除文章。