对象:目录错误:不了解#name

时间:2019-05-10 08:02:24

标签: directory smalltalk gnu-smalltalk

下面列出目录中文件的简单代码来自here

(Directory name: '.')  
allFilesMatching: '*.st' 
do: [ :f | (f name) displayNl ]

但是,它无法正常工作并给出以下错误:

$ gst mysrc.st
Object: Directory error: did not understand #name:
MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
Directory class(Object)>>doesNotUnderstand: #name: (SysExcept.st:1448)
UndefinedObject>>executeStatements (firstline.st:1)

我正在Debian Stable Linux 上的 GNU Smalltalk 版本3.2.5上工作。

问题出在哪里,如何解决?

1 个答案:

答案 0 :(得分:2)

我不知道是谁在 rosettacode 上编写它的,但是#name:选择器不正确(Directory类中不存在)。如果您选中Directory class,则不会在其中找到此类选择器。相反,您会找到一个#working:选择器。选择器有一个描述:

working: dirName
    Change the current working directory to dirName.

您的代码将如下所示:

(Directory working: '.') allFilesMatching: '*.st' do: [ :f | 
   (f name) displayNl
]