我来做,你来用

    1. public class Main{
    2. public static void main(String[] args){
    3. Table table = new Table(3);
    4. new MakerThread("MakerThread-1",table,31415).start();
    5. new MakerThread("MakerThread-1",table,92653).start();
    6. new MakerThread("MakerThread-1",table,58979).start();
    7. new EaterThread("MakerThread-1",table,32384).start();
    8. new EaterThread("MakerThread-1",table,62643).start();
    9. new EaterThread("MakerThread-1",table,38327).start();
    10. }
    11. }