我已经决定我已经厌倦了决定哪些类负责删除哪些位图。我试图重写我的代码以使用带有自定义删除器al_destroy_bitmap
我的代码很简单。
shared_ptr<ALLEGRO_BITMAP> test = make_shared<ALLEGRO_BITMAP>(al_load_bitmap("hello.png"), al_destroy_bitmap);
我遇到了一些我似乎无法解决的错误。
error C2079: 'std::_Get_align<ALLEGRO_BITMAP>::Elt2' uses undefined struct 'ALLEGRO_BITMAP'
error C2079: 'std::_Get_align<ALLEGRO_BITMAP>::Elt0' uses undefined struct 'ALLEGRO_BITMAP'
error C2027: use of undefined type 'ALLEGRO_BITMAP'
error C2027: use of undefined type 'ALLEGRO_BITMAP'
解决我的问题的其他解决方案是创建一个Bitmap类来包装所有Allegro的东西,但这看起来很难看,我认为我不应该这样做。另外,我已经在任何地方使用了其他的allegro函数,然后我想为ALLEGRO_SAMPLE
和ALLEGRO_FONT
编写相同类型的类。我真的不喜欢那样做。
如何将智能指针与Allegro位图一起使用?
编辑:也许为非Allegro编码员提供ALLEGRO_BITMAP如何工作的感觉,我会在下面发布一些代码
ALLEGRO_BITMAP *test = al_load_bitmap("hello.png") // This works
ALLEGRO_BITMAP test1; // This fails with error C2079 undefined struct ALLEGRO_BITMAP. I expect this here.
答案 0 :(得分:5)
像这样:
std::shared_ptr<ALLEGRO_BITMAP> test(al_load_bitmap("hello.png"), al_destroy_bitmap);
请记住:make_shared
和make_unique
致电new
,您不希望这样。
同样make_x<T>
构造类型为T
的对象,将给定的参数传递给T
的构造函数。但al_load_bitmap
返回指向完全构造对象的指针,因此您不想调用任何构造函数(智能指针构造函数除外)。