1. 使用 git stash pop 完成多开发分支间的同步,避免合并无意义的commit
2. Couldn't process file resx due to its being in the Internet or Restricted zone or having the mark of the web on the file
- Start Menu > type 'Internet Options'.
- Select Local intranet zone on the Security tab then click the Sites button
- Click Advanced button
- Enter file://[computer name]
- Make sure 'Require server verification...' is unticked
3. JAVA中对象的赋值是引用
4. c++中的为什么不需要finally,java中为什么需要finally
- A finally block makes sure that however you exit that block (modulo a few ways of aborting the whole process explicitly), it will get executed. That's important for deterministic cleanup of resources.(https://stackoverflow.com/questions/3421486/why-do-we-use-finally-blocks)
- c++ 使用 RAII 设计模式