摘要:
Vim 是从 vi 发展出来的一个文本编辑器。代码补完、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。和 Emacs 并列成为类 Unix 系统用户最喜欢的编辑器。这里收录了130+程序员必备的 vim 命令,帮助你提高开发效率。欢迎在评论中补充你常用到,但这里没有列出来的命令。Ba... 阅读全文
摘要:
TL;DR:You want to teach yourself vim (the best text editor known to human kind) in the fastest way possible. This is my way of doing it. You start by ... 阅读全文
摘要:
之所以把Latch与Barrier放在一起比较是因为他们给人一种相似的感觉。 他们都是阻塞一些行为直至某个事件发生,但Latch是等待某个事件发生,而Barrier是等待线程。 先比较一下JCIP中对二者的描述: Latch A latch is a synchronizer that can de 阅读全文