Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试加载一些具有stbi_load以下功能的图像:
stbi_load
stbi_load(filename, parameter2, parameter3, parameter4, parameter5);
问题是我有这样的文件名:
stbi_load("example_filename",...);
但是函数需要第一个参数是const char*。我尝试投射,但它没有加载图像。我正在使用 Visual Studio 2017。
const char*
stbi_load("example_filename",...); 但是函数要求第一个参数是 const char*。我尝试铸造,但没有奏效。
但是函数要求第一个参数是 const char*。我尝试铸造,但没有奏效。
字符串文字隐式转换为,const char*所以这不是问题。没有必要投射它。移除演员表,它应该可以工作,除非你有另一个你没有向我们展示的问题。