当程序第一次执行到Read()函数时,程序会被阻塞,然后输入字符,Enter之后程序被激活,windows平台会自动在输入字符之后加入回车符和换行符,此时输入流中就有三个字符,然而read每次只读取一个字符,之后两次调用read函数读取字符,然后再次调用read时程序会再次阻塞,因为无字符可读.利用这个暂时停止循环. while (true) //{ 阻塞处 // int i = Console.Read()//Read()读到输入字符的末尾时会阻塞程序的运行,也即是从貌似…
HTML INPUT元素有个checked属性,多数情况type为radio和checkbox. 当创建一个input,checked属性赋值为true,添加到DOM文档中,当再次取checked属性时,IE6.7竟然是false. 测试如下 var div = document.createElement('div') var input = document.createElement('input') input.type = 'checkbox' input.checked = true…
在elixir中, true 就是true 或者是:true 是一个原子 atom, 在其他语言中的true,这里叫做truth, 只要你不是false,nil ,就是truth, 当然 false和nil也是原子 所以说elixir中Boolean operators 是针对true a or b # true if a is true, otherwise ba and b # false if a is false, otherwise bnot a # false if a is tr…