理解文件系统树 当前工作目录 ls - 列出目录内容 cd - 更改当前工作目录 绝对路径 相对路径 有用的快捷键 ★★★ The first thing we need to learn to do (besides just typing) is how to navigate the file system on our Linux s...
语法: b{l}{条件} 目标地址 备注: l (注: l 是 L 的小写字母,不是 数字1) 决定是否保存返回地址到lr(r14)中.当有 l 时,当前 pc寄存器值+4 (即:当前pc的下一条指令的地址) 保存到 lr 中,然后跳转到 目标地址;当无 l 时,当前 pc寄存器值+4 (即:当前pc的下一条指令的地址) 不会保存到 lr 中,直...
变量来源于数学,是计算机语言中能储存计算结果或能表示值抽象概念。变量可以通过变量名访问。 Go 语言变量名由字母、数字、下划线 组成,其中首字母不能为数字。 声明变量的一般形式是使用 var 关键字: var identifier type 变量声明 第一种,指定变量类型,声明后若不赋值,使用默认值。 var v_name v_type...
位置参数 One feature that has been missing from our programs is the ability to accept and process command line options and arguments. In this chapter, we will examine the shell featu...