private void delay(int ms){

        try {

            Thread.currentThread();

            Thread.sleep(ms);

        } catch (InterruptedException e) {

            e.printStackTrace();

        }

    }



注意:本文归作者所有,未经作者允许,不得转载