附加两个字符串

时间:2015-12-20 11:40:31

标签: smalltalk squeak

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

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

吱吱声有办法吗? (注意:+运算符不是必需的 - 只是示例)

非常感谢, 尼散。

1 个答案:

答案 0 :(得分:6)

有可能,您需要使用#,(逗号)消息,如下所示:

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

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