---------------------if语句介绍--------------------------------------------------- class IfDemo { public static void main(String[] args) { int x 1; if(x>1) { System.out.println("yes"); } else { System.out.println("a"); } /* if else …
这两天在研究 erlang 如何构建 TCP 服务器,看到一篇文章,基于Erlang OTP构建一个TCP服务器,里面讲述了两种混合型Socket的实现方法,着实让人欢欣鼓舞。对比老外写的Building a Non-blocking TCP server using OTP principles,作者写的那个有点简单。本文将结合这两篇文章,…