我不确定我是否理解了 Postscript 字典的语义。如果在定义字典条目时使用“def”,而不是仅列出键值对,那么两者有什么区别?下面,我在字典 /d 中定义 /a 和 /b。/a 使用“def”定义;/b 使用键值对定义。当使用“===”运算符打印出 /d 时,我们只能看到 /b。如果我们将 /d 加载到字典堆栈上,我们可以访问和打印 /a 和 /b。如果我们在 /d /b 上执行 get,我们将返回 /b 的值。但如果我们在 /d /a 上执行 get,我们将收到未定义的错误。
有人能帮助我理解为什么 /a 没有在字典 /d 上使用“get”定义/可见,为什么在打印 /d 时它没有显示,以及为什么当我们将 /d 加载到字典堆栈上时它是可访问/定义的?
“def”运算符的定义非常简单:
def - 将当前字典(位于字典堆栈顶部的字典)中的键与值关联(请参见第 3.4 节“堆栈”)。如果当前字典中已经存在键,def 只会替换其值;否则,def 会为键创建一个新条目,并将值存储在其中。- p.568 Postscript 语言参考第三版
在这种情况下,我看到定义 /a 时的 currentdict 是 /d。但“get”看不到它。但是,它在字典中,因为当您将字典加载到字典堆栈上时,它就被定义了。
/d <<
/a 22 def
/b 33
>> def % Define dictionary 'd'
d === % Print out contents of d; Prints /b 33 but no /a
d begin % Push d onto the dictionary stack
a = % Prints value of d/a '22'
b = % Prints value of d/b '33'
end % Pop d off of the dictionary stack
d /b get = % Prints value of d/b '33'
d /a get = % Error /undefine. Cannot find /a in d
输出(使用 ghostscript):
$ gs -q -dALLOWPSTRANSPARENCY -dBATCH -dNOPAUSE -dQUIET -dNOSAFER -sDEVICE=pdfwrite -o tmp_test.pdf tmp_test.ps
<< /b 33 >>
22
33
33
Error: /undefined in --get--
Operand stack:
--dict:1/1(L)-- a
Execution stack:
%interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1990 1 3 %oparray_pop 1989 1 3 %oparray_pop 1977 1 3 %oparray_pop 1833 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval--
Dictionary stack:
--dict:795/1123(ro)(G)-- --dict:0/20(G)-- --dict:77/200(L)--
Current allocation mode is local
Current file position is 317
GPL Ghostscript 10.01.2: Unrecoverable error, exit code 1
$