5TryCatch

int a=1;
 try
 {
  if(NULL!=a)throw a;
 }
 catch(int)
 {
  MessageBox(L"Catch Information \n NULL!=a");
 }

你可能感兴趣的:(5TryCatch)