从一个示例来分析Python的线程安全问题

几行Java代码引起的思考

平时经常看到类似这样的Java代码:

private Integer pos = 0;
public void increase(){
        // 省略掉了一...