追加两个字符串

Append two strings

我试图在 squeak(版本 4.5)中将两个字符串相互附加,但没有成功。 例如(我想做什么):

str1:='hello '.
str2:='world'.
appendStr:= str1 + str2.

有办法在吱吱声中做到这一点吗? (注意:+ 运算符不是必需的 - 只是示例)

非常感谢, 尼散.

有可能,您需要像这样使用 #,(逗号)消息:

| string1 string2 complete |
string1 := 'Hello '.
string2 := 'World!'.
complete := string1, string2.

请注意,在 Smalltalk 中,逗号不是语法,只是另一条消息。