我正在尝试在Genie中复制python的Verbal Expression库,作为学习如何使用类的练习。我有简单的类,比如教程中列出的类,但是当面向对象方式的instatiate方法时,我遇到了问题。这是我正在尝试的:
出于培训目的,我想要一个名为add的方法,其行为与string.concat()完全相同。
[indent=4]
class VerEx : Object
def add(strg:string) : string
return this.concat(strg)
但我收到错误:
verbalexpressions.gs:33.16-33.26: error: The name `concat' does not exist in the context of `VerEx'
当我使用不同的方法时,例如:
class VerEx : Object
def add(strg:string) : string
a:string=""
a.concat(strg)
return a
init
test:string = "test"
sec:string = " + a bit more"
print test.VerEx.add(sec)
我在上面文字的最后一行收到错误,并带有警告:
verbalexpressions.gs:84.11-84.21: error: The name `VerEx' does not exist in the context of `string?'
我希望能够使test.add(sec)与test.concat(sec)的行为完全相同,我能做些什么来实现这个目标?
答案 0 :(得分:1)
这方面的一个小例子, 注意:
中的unhandle RegexError[缩进= 4]
class VerX
s: GenericArray of string
construct ()
s = new GenericArray of string
def add (v: string): VerX
s.add (v)
return self
def find (v: string): VerX
return self.add ("(%s)".printf (v))
def replace(old: string, repl: string): string
// new Regex: unhandle RegexError HERE!!
var r = new Regex (@"$(self)")
// r.replace: unhandle RegexError HERE!!
return r.replace(old, old.length, 0, repl)
def to_string (): string
return string.joinv ("", s.data)
init
var replace_me = "Replace bird with a duck"
var v = new VerX
print v.find("bird").replace(replace_me, "duck")
var result = (new VerX).find("red").replace("We have a red house", "blue")
print result