问题标签 [exit]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
306 浏览

flash - flash 退出时的 Flash 事件监听器是什么?

任何人都知道如何使事件侦听器用于 Flash 退出?

退出的意思是当一个包含闪光灯对象的标签被删除时,你就再也看不到闪光灯了......

谢谢

0 投票
3 回答
19477 浏览

git - 在 zsh 中,如何以程序的退出状态为条件?

我想这样做:

除了我不知道如何检查退出状态。我该如何解决?

谢谢

0 投票
4 回答
1145 浏览

shell - Bourne Shell 退出将不起作用

我有以下脚本

一切都可以回显,然后当脚本退出时,它不会并继续运行。有任何想法吗。

谢谢

0 投票
3 回答
2603 浏览

bash - 如何退出bash中的所有调用脚本?

假设我有以下脚本

b.sh

运行 b.sh 时,如果 a.sh 退出,我希望它退出。我该怎么做呢?

(当前输出为

这不是我想要的)

谢谢,里夫卡

0 投票
4 回答
7774 浏览

c# - Test a lock with out acquiring it?

I have objects, they get locks. I want to test if they are locked without acquiring a lock. The idea is if I TryEnter() then i have to Exit() if true to only check the lock correctly.

Seems like a really basic question, how is it done?

0 投票
2 回答
1388 浏览

scala - How can I add scala actors to an existing program without interfering with the normal termination behavior?

This program, after executing main(), does not exit.

Because of this unexpected side-effect, using actors can be viewed as intrusive.

Assuming the actors must continue to run until program termination, how would you do to preserve original behavior in all cases of termination?

0 投票
2 回答
4366 浏览

perl - 如何在 Perl 中获得回溯?

可能重复:
如何对 Perl 中的所有致命错误强制执行堆栈回溯?

我喜欢 Python 的一件事是,当脚本因错误退出时,它会吐出回溯。我想知道有没有让 Perl 也能做到这一点?

0 投票
2 回答
5067 浏览

c - 我可以撤消或删除 atexit 命令吗?

如果我放在atexit( fn );退出堆栈上,它将在程序退出时执行:从main()或通过返回exit()

我可以从堆栈中删除它吗?

你问我为什么要这样做?

我正在尝试使用atexit,setjmp和的简单 try-catch 机制longjmp。如果可以undo-atexit(fn);的话,那就太完美了——即使它只适用于最后一个注册的函数。

编辑:

按照 monoceres 的建议制作我自己的堆栈...

该堆栈目前仅适用于一个异常捕获器。

0 投票
5 回答
1832 浏览

php - PHP:死/退出中的多个命令

当它给出错误时,我希望他做两件事。

  1. 回声 nl2br($qVraagOp);
  2. mysql_error();

所以我认为:

我可以编写一个函数来完成这两件事,然后调用它,但这有点多余。还有其他方法吗?

马蒂

0 投票
3 回答
1000 浏览

c++ - 没有明确使用 return /exit 的任何退出状态

这实际上让我很烦恼。问题是这样的:如何将程序的退出状态设置为任何值,而无需在 gcc/g++ 中显式使用返回/退出? 让我们考虑这段代码:(从标准输入获取输入并将其打印到标准输出,直到遇到零输入 0)

在我的系统(即windows + mingw)中,它返回 1,如何在不显式使用 exit/return 的情况下使其隐式返回 0 或其他任何内容?

编辑 :

我稍微修改了代码:

它现在隐式返回 0,但我无法从中得出任何确定的结论。