1

我正在尝试在 Smalltalk 中创建一个非常简单的 Vector 类作为 Array 的子类。我创建类的代码如下所示:

Array subclass: #Vector
Vector comment: 'I represent a Vector of integers'

Vector class extend [
new [
    | r |
    <category: 'instance creation'>
    r := super new.
    r init.
    ^r 
    ]
 ]

Vector extend [
init [
    <category: 'initialization'>
    ]
 ]

显然我还没有写任何方法,但我只是想让这部分首先工作。如上所述创建类后,如果我输入: v := Vector new: 4 我得到错误:

Object: Vector error: should not be implemented in this class, use #new instead
SystemExceptions.WrongMessageSent(Exception)>>signal (ExcHandling.st:254)
SystemExceptions.WrongMessageSent class>>signalOn:useInstead: (SysExcept.st:1219)
Vector class(Behavior)>>new: (Builtins.st:70)
UndefinedObject>>executeStatements (a String:1)
nil

我假设因为它是 Array 的子类,所以我可以用这种方式创建一个 Vector。这样做的最佳方法是什么?谢谢!

编辑——我想通了。在深入阅读教程后,我发现我需要包含 <shape: #pointer>

4

1 回答 1

4

Array 是一种特殊的类,它具有不同长度的可索引实例。

在 GNU Smalltalk(您似乎正在使用)中,Array 类被声明为:

ArrayedCollection subclass: Array [       
    <shape: #pointer>

要继承此行为,您可以使用:

Array subclass: Vector [<shape: #inherit>]

但在大多数情况下,创建一个封装 Array 的类而不是从 Array 继承的类更有意义。

还值得指出的OrderedCollection是 Smalltalk 相当于 C++ 和 Java 中的向量容器。

于 2012-02-28T06:51:33.347 回答