摘要:当你从ActiveMQ的 ConnectionFactory中获得Connection之后,可以通过Connection创建多个Session,创建Session时有两个参数 Session createSession(boolean transacted, int acknowledgeMode)
阅读全文
|
07 2019 档案
摘要:当你从ActiveMQ的 ConnectionFactory中获得Connection之后,可以通过Connection创建多个Session,创建Session时有两个参数 Session createSession(boolean transacted, int acknowledgeMode)
阅读全文
摘要:1、Python2和Python3的 字符编码 和 字符类型 Python3: Unicode字符串 str 类型 非Unicode字符串 bytes 类型 Python2: Unicode字符串 unicode 类型 非Unicode字符串 str 类型 2、python的Unicode和非Uni
阅读全文
摘要:每个python模块都包含内置的变量__name__。如果模块自身调用,则__name__的值为__main__,如果模块被import调用,则__name__的值为进行了import的模块名。 因此,当模块自身调用时:__name__ == '__main__'为true,if里面的代码就会执行;
阅读全文
|