MCPcopy Create free account
hub / github.com/HelloBush/Java_MHXYdemo / delay

Method delay

src/pkgDm/Dm2Java.java:848–854  ·  view source on GitHub ↗

延迟时间 @param millis @throws InterruptedException

(long millis)

Source from the content-addressed store, hash-verified

846 * @throws InterruptedException
847 */
848 public void delay(long millis){
849 try {
850 Thread.sleep(millis);
851 } catch (InterruptedException e) {
852 throw new RuntimeException(e);
853 }
854 }
855
856 /**
857 * 把鼠标移动到目的范围内的任意一点<br/>

Callers 3

Job_BaoTuMethod · 0.80
Job_GuiMethod · 0.80
mainMethod · 0.80

Calls

no outgoing calls

Tested by 1

mainMethod · 0.64