unix 中的术语静态变量是什么意思?

Gee*_*eek 3 process programming terminology

来自本书的第 2.7 节 -名为进程内存布局的 Linux 编程接口

数据定义为

static variables used by the program.
Run Code Online (Sandbox Code Playgroud)

静态这个词在这里有什么意义?我知道 Java 中的静态变量是什么,但我无法在此上下文中关联该含义。

Chr*_*own 6

静态变量是在程序的整个生命周期中都存在的变量。也就是说,它们被放置在编译时分配的内存中(与大多数变量相反,它们在运行时分配)。