我试图连续"("+ + mouseX +","+ mouseY")".但是,mouseX和mouseY是整数,所以我尝试使用stringstream,如下所示:
std::stringstream pos; pos << "(" << mouseX << ", " << mouseY << ")"; _glutBitmapString(GLUT_BITMAP_HELVETICA_12, pos.str());
它似乎不起作用.
我收到以下错误:
mouse.cpp:75:错误:无法转换
std::basic_string
const char*'参数, std::allocator >' to 2' to
void _glutBitmapString(void*,const char*)'
我在这个基本的字符串+整数连接中做错了什么?
glutBitmapString()
期待一个char*
,你发送一个字符串.像这样在字符串上使用.c_str():
_glutBitmapString(GLUT_BITMAP_HELVETICA_12, pos.str().c_str());