which 不管是在Windows还是Linux系统中,我们都会偶尔执行一些系统命令,比如Windows常见的cmd.ping.ipconfig等,它们的位置都在%systemdrive%中.在Linux里面我们知道在终端机模式中,连续输入两次TAB就能知道当前有多少命令可以使用.我们以cat命令为例,在连接输入TAB后,会出现三个可用命令,如下图所示: 虽然我们可以直接使用这些命令,但你有没有想过这些命令的完整位置在什么地方?我们可以which命令来实现查找. whic…
标识符 字母或下划线开头 之后只能出现数字.字母.下划线 大小写敏感 Go语言关键字 break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continue for import return var 此外,还有大约30多个预定义的名字,比如int和true等,主要对应内建的常量.类型和函数 内建常量: t…
&&与||的基础<script type="text/javascript"> var c = 4||3; alert(c);</script>弹出的是4:解释:if(c=4){4}else{3} <script type="text/javascript"> var c = 0||3; alert(c);</script>弹出的是3: 解释:if(c=0){0}else{3} <script t…
基础 <script type="text/javascript"> function validateNumber(value) { // Validate the number if (!isNumber(value)) alert("Please enter a number."); } </script> javascript 最好与html分离 浏览器里具有一种特殊软件-javascript解释器 onload 事件 onclick…
Lesson 2: Dive Into Typography (排版) 排版是字的艺术,是关于字的一切:字体.字号.行高.行长.字重(斜体/加粗/正常).字距(kerning).行距(leading)可读性-- Article 1: Typography Essentials – A Getting Started Guide (排版要点--一个入门指南) 这篇文章所说的很多都不适用于中文. 基础 The Type Size, also called the Cap Height, is the…