运行时刻. 相对的为编译时刻... 比如查错:
#if AAA > BBB 
#error ...
#endif 这是编译时...这个要在运行时发现.
if(aaa > bbb)
{
   MessageBox("error") // process error ...
} 注: 上面MessageBox后面少了个';'号. 这个错误在编译时可以查出来. ... ^-^