下面这段代码是在工程文件中的,其中splashform是个Form窗体。我查到有关资料:Refresh方法的作用是重画屏幕上的控件组;Update方法的作用是立即处理和绘图相关而未解决的信息。但是我对这段代码的作用还是很模糊,请各位帮忙解释一下,谢谢!splashform := tsplashform.Create(application);
  splashform.Show;
   splashform.Refresh;
  splashform.Update;
   sleep(1);
   splashform.Refresh;
   splashform.Update;
     splashform.Close;
  splashform.Free;