• eclipse formatter格式文件

    /** * 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(); } }

    0
    156
    33KB
    2017-09-11
    10
上传资源赚积分or赚钱