作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
无论我做什么,Visual Studio Community 2015 调试器都告诉我它无法读取字符串 (res_path) 的字符
我声明:
bool loadBMP() {
bool success = true;
std::string res_path = "res\\pixelhome.bmp";
bmp = SDL_LoadBMP(res_path.c_str());
if (bmp == NULL) {
std::cout << "SDL_IMAGE_ERROR: " << SDL_GetError() << std::endl;
success = false;
}
return success;
}
我还尝试将 res_path
设置为 NULL
然后将字符串设置为 "res\\pixelhome.bmp"
但结果相同错误。我错过了什么?
最佳答案
看起来它显示的是初始化之前的内容——也就是垃圾。
进入下一行。
关于c++ - 读取字符串字符时出错,VSCommunity2015,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36222296/
我是一名优秀的程序员,十分优秀!