0

``我正在学习如何在 cinder 中加载图像。

我使用了ImageIo.h 文件中定义的 loadImage 函数,但是当我构建我的代码时,它给出了以下错误

c:\users\user\particle\src\particleapp.cpp(30): error C2440: 'initializing' : cannot convert from 'ParticleApp *' to 'cinder::app::AppBasic *'


1>          Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast

如何解决?

4

1 回答 1

1

在没有看到您的代码的情况下尝试猜测。但是您是否将父类类型添加到您的 ParticleApp 类中?

在哪里声明 class ParticleApp { ... }

你应该这样做: class ParticleApp : public cinder::app::AppBasic { ... }

于 2015-03-02T19:33:13.140 回答