while (!thisClass.sShell.isDisposed()) {
if (!display.readAndDispatch())
displ
while (!thisClass.sShell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
出自上面,顺便解释下这个循环thisClass这个是对象 sShell这个是位于thisClass里面的对象 sShell里面有一个方法isDisposed())
将返回一个布尔值true 或者false
display也是一个对象 里面有一个方法 readAndDispatch()返回一个布尔值
若(!display.readAndDispatch() )为 true 就
display.sleep();