struct ImageInfo
{
 BITMAPINFO header;
 void* image;

 ~ImageInfo()
 {
  if(image!=NULL)
  {
   delete image;
  }
 }
};



要不会有内在泄漏!

相关文章:

  • 2022-12-23
  • 2021-05-28
  • 2021-12-05
  • 2021-07-13
  • 2021-05-27
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-03
  • 2021-12-09
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案