zoukankan      html  css  js  c++  java
  • Python中if __name__ == "__main__": 的作用

    在很多python脚本中在最后的部分会执行一个判断语句

    if __name__ == "__main__:"

    之后还可能会有一些执行语句。那添加这个判断的目的何在?

    在python编译器读取源文件的时候会执行它找到的所有代码,而在执行之前会根据当前运行的模块是否为主程序而定义变量__name__的值为__main__还是模块名。因此,该判断语句为真的时候,说明当前运行的脚本为主程序,而非主程序所引用的一个模块。这在当你想要运行一些只有在将模块当做程序运行时而非当做模块引用时才执行的命令,只要将它们放到if __name__ == "__main__:"判断语句之后就可以了。

    具体举个例子方便理解:

    # file one.py
    def func():
        print("func() in one.py")
    
    print("top-level in one.py")
    
    if __name__ == "__main__":
        print("one.py is being run directly")
    else:
        print("one.py is being imported into another module")
    # file two.py
    import one        # start executing one.py
    
    print("top-level in two.py")
    one.func()
    
    if __name__ == "__main__":
        print("two.py is being run directly")
    else:
        print("two.py is being imported into another module")

    当运行python one.py,输出:

    top-level in one.py
    one.py is being run directly

    当运行python two.py,输出:

    top-level in one.py
    one.py is being imported into another module
    top-level in one.py
    func() in one.py
    two.py is being run directly
  • 相关阅读:
    hdu1010 Tempter of the Bone(深搜+剪枝问题)
    08-Objective-C特有语法:@property、@synthesize
    Servlet的Response.setContentLength无效
    Java Future
    android一些若干回调测试
    那些有趣的Webview细节
    androidlog日志之 Klog (StackTraceElement)
    曾几何时遇到的bug(viewpager+fragment)
    Android acache读后感
    11-8 定时器this
  • 原文地址:https://www.cnblogs.com/while-number/p/9168622.html
Copyright © 2011-2022 走看看