最初由 wind 发布
老板上星期突然叫我去看一下某中国女同事的code,对她的工作给评估,原因是有人反映她工作能力有问题。周末看了看她的code,果然有些问题。
这就难了,不如实汇报,置自己的信誉和接手的其他同事于危险,如实汇报,这老姐姐要悬。各位说咱该咋办?
一句题外话,很多中国人因为生活,而从事了本不应该从事的职业。
最初由 wind 发布
老板上星期突然叫我去看一下某中国女同事的code,对她的工作给评估,原因是有人反映她工作能力有问题。周末看了看她的code,果然有些问题。
这就难了,不如实汇报,置自己的信誉和接手的其他同事于危险,如实汇报,这老姐姐要悬。各位说咱该咋办?
一句题外话,很多中国人因为生活,而从事了本不应该从事的职业。
最初由 wind 发布
举个例子:
在multi-threads系统中,在single instance的method中,不能将相关数据存在该single instance的private member里,因为可能有其他threads正在call同一个instance,they will overwrite each other.
她不清楚这事,这属於基本的逻辑和概念,让咱说啥好。
最初由 wind 发布
举个例子:
在multi-threads系统中,在single instance的method中,不能将相关数据存在该single instance的private member里,因为可能有其他threads正在call同一个instance,they will overwrite each other.
她不清楚这事,这属於基本的逻辑和概念,让咱说啥好。
最初由 wei 发布
Do you mean a singleton in Multi thread system? I sometimes do exactly the same thing as this lady. Is there any other way to implement semaphor/monitor? (I use the "synchronized" method provided by Java).
In C/C++ with Unix, use shared memory to store semaphor/monitor. In java, I am not sure. But the synchronized methods should have the control and maintaince for each thread. If you want to study more, please see Steven's books.最初由 wei 发布
Do you mean a singleton in Multi thread system? I sometimes do exactly the same thing as this lady. Is there any other way to implement semaphor/monitor? (I use the "synchronized" method provided by Java).