.exe没有显示“按任意键继续......”

时间:2016-01-15 04:35:49

标签: c++

enter image description here 在Visual Studio中,无论何时启动而没有调试,显示的.exe文件都不包含短语“按任意键继续...”,就像通常那样。屏幕刚开始时有闪烁的光标。这有什么简单的解决方法吗?我已经注释掉了我的一些代码,这个短语显示了备份。

这是我已经注释掉的代码:我已正确声明了所有变量和类。

var defaultObject = "";    //this is the default value returned if the property is not found, you can return an empty object like {} too
Object.prototype.get = function(name) {
    if (this != undefined && this[name] != undefined)
        return this[name];
    else
        return defaultObject;
}
Object.prototype.defaultTo = function(value) {
    if (this === defaultObject)
        return value;
    else
        return this;
}

3 个答案:

答案 0 :(得分:3)

在Windows上,system("PAUSE");会提示用户输入文字:

Press any key to continue...

答案 1 :(得分:2)

似乎你的主do-while循环无休止。你如何初始化网格?

答案 2 :(得分:0)

问题最终是因为我正在走出名为grid的数组边界,而且我还在for循环中混淆了我的行和列。