我正在使用openframeworks。這是基於C++的。C++:無法使用類型爲'void'的右值初始化類型爲'guiBaseObject *'的變量
我有以下代碼:
guiBaseObject *item = panel.addSlider("motor_speed", 0, 0, 100);
而且我無法理解爲什麼我收到以下錯誤。
/Users/CREATER/Documents/of_v0.8.4_osx_release/apps/myApps/MapamokStepper/src/MotorControl.cpp:38:20: Cannot initialize a variable of type 'guiBaseObject *' with an rvalue of type 'void'
'addSlider'可能返回'void',所以你不能在'guiBaseObject *'從它返回。 – CoryKramer
'addSlider()'的返回類型是什麼? – Biffen
我的文檔中沒有看到['addSlider'](http://openframeworks.cc/documentation/),但我認爲它會返回'void'。 – CoryKramer