Python中exit()和sys.exit()之间的区别


409

在Python中,有两个类似的函数,exit()sys.exit()。有什么区别,何时应在另一个上使用?

Answers:


471

exit是交互式外壳的帮助sys.exit程序- 旨在在程序中使用。

site模块(启动时会自动导入,除非指定了-S命令行选项)会向内置名称空间(例如exit添加多个常量。它们对于交互式解释程序外壳很有用,不应在程序中使用


从技术上讲,它们的作用大致相同:提高SystemExitsys.exitsysmodule.c中这样

static PyObject *
sys_exit(PyObject *self, PyObject *args)
{
    PyObject *exit_code = 0;
    if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
        return NULL;
    /* Raise SystemExit so callers may catch it or clean up. */
    PyErr_SetObject(PyExc_SystemExit, exit_code);
   return NULL;
}

虽然分别exitsite.py_sitebuiltins.py中定义。

class Quitter(object):
    def __init__(self, name):
        self.name = name
    def __repr__(self):
        return 'Use %s() or %s to exit' % (self.name, eof)
    def __call__(self, code=None):
        # Shells like IDLE catch the SystemExit, but listen when their
        # stdin wrapper is closed.
        try:
            sys.stdin.close()
        except:
            pass
        raise SystemExit(code)
__builtin__.quit = Quitter('quit')
__builtin__.exit = Quitter('exit')

请注意,还有第三个退出选项os._exit,它退出时不调用清除处理程序,刷新stdio缓冲区等(并且通常仅应在之后的子进程中使用fork())。


4
我怀疑exit(main())是一个常见的习惯用法,因为人们不了解程序注释中不应使用的内容。除非-S使用,否则它工作正常。使它甚至可以使用的一种方法-S是指定from sys import *
nobar 2012年

5
@nobar,是的,但是您真的不想使用from module import *
miku

@EvgeniSergeev,我不确定您到底在问什么?它本身可能是一个有趣的问题。
miku

很好地添加到此答案,以查看使用“ with语句”中的三个退出函数中的任何一个是否存在什么问题。
DevPlayer

32

如果我exit()在代码中使用并在外壳中运行它,则会显示一条消息,询问我是否要终止该程序。真是令人不安。 看这里

但是sys.exit()在这种情况下更好。它关闭程序,并且不创建任何对话框。


2
这是因为它是为在交互式外壳程序中使用而设计的。因此,即使您需要对话框,也sys.exit()应在程序内部使用。
TheTechRobo36414519
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.