为什么在读取位置时,loadFromFile会产生访问冲突?

why loadFromFile produces access violation when reading location?(为什么在读取位置时,loadFromFile会产生访问冲突?)
本文介绍了为什么在读取位置时,loadFromFile会产生访问冲突?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是C++/SFML新手,我不知道为什么我的程序无法加载纹理,我尝试将图像放在项目文件夹和调试文件夹中,但不起作用。

编码:

int main() {
sf::RenderWindow window(VideoMode(600,600),"Window");

sf::Event event;

sf::Texture textura;
textura.loadFromFile("icono.png");

sf::Sprite sprite1(textura);

while (window.isOpen()) {
    while (window.pollEvent(event)) {
        if (event.type== sf::Event::EventType::Closed) {
            window.close();
        }
    }
    window.clear();
    window.draw(sprite1);
    window.display();
}

}

错误是测试SFML.exe:0xC0000005中0x5F6D3647(vcrunime140.dll)处的未处理异常:读取";textura.loadFromFile(";icono.png";);";

行中的位置0x00701000&qot;时发生访问冲突

推荐答案

我找到了答案,并将其分享以备有所帮助。可能的解决方案是将SFML调试库添加到";其他依赖项中,这些库是";sfml-graph-d.lib";和";sfml-system-d.lib";。

这篇关于为什么在读取位置时,loadFromFile会产生访问冲突?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Unknown type name __m256 - Intel intrinsics for AVX not recognized?(未知类型名称__M256-英特尔AVX内部功能无法识别?)
How can an declare an array in a function that returns an array in c++(如何在用C++返回数组的函数中声明数组)
Is it possible to define a class in 2 or more file in C++?(在C++中可以在两个或多个文件中定义一个类吗?)
Why can#39;t I create an array of automatic variables?(为什么我不能创建一个自动变量数组?)
zeromq: reset REQ/REP socket state(Zeromq:重置REQ/REP套接字状态)
Can I resize a vector that was moved from?(我可以调整从中移出的矢量的大小吗?)