"嵌入式声明不能声明"精灵错误

时间:2016-08-27 04:44:14

标签: genie

Genie的网站似乎已经过时了。可能不再支持HashMaps或它们的语法已经改变。

如果尝试旧BarryK website中的示例:

uses
    Gee

init
    var d = new dict of string,string
    d["fruit"] = "apple"
    d["animal"] = "dog"
    d.set("plant","cactus")
    d.set("animal","hippopotomus") /*changes from 'dog'*/
    if d.contains("plant") == true do print "Key 'plant' is in dictionary"
    print "%s", d.get("animal")
    for o in d.keys do print o //old libgee use d.get_keys()
    for o in d.values do print o //old libgee use d.get_values()
    d.remove("animal")

对于以:

开头的行,会收到错误dicts.gs:7.36-7.40: error: syntax error, embedded statement cannot be declaration
  • 如果d.contains
  • for d in d.keys
  • for d inval。

此外,使用官方精灵website并没有太大的成功:

[indent=4]

uses
    Gee

init

    /* test dicts */
    var d = new dict of string,string

    /* add or change entries with following */
    d["Genie"] = "Great"
    d["Vala"] = "Rocks"


    /* access entires using d[key] */
    /* note that instead of "d.get_keys ()" it is "d.keys" in newer Versions of Gee */
    for s in d.get_keys ()
        print "%s => %s", s, d[s]

为行dicts.gs:18.14-18.23: error: The name `get_keys' does not exist in the context of `Gee.HashMap<string,string>'生成错误:for s in d.get_keys ()

我错过了什么或网站是否过时了?

更新为了完整性,我一直在使用Manjaro linux,我的libgee包是版本0.18,编译中有一个额外的错误gee-0.8.vapi:664.4-664.13: warning: [Deprecated] is deprecated. Use [Version (deprecated = true, deprecated_since = "", replacement = "")]

1 个答案:

答案 0 :(得分:1)

&#34;嵌入语句不能声明&#34;消息是由使用do关键字而不是启动新块引起的。如果您使用:

if d.contains("plant") == true
    print "Key 'plant' is in dictionary"

这将编译。或者,您可以将print从语句更改为函数调用,也可以编译:

if d.contains("plant") == true do print( "Key 'plant' is in dictionary" )

一个工作示例,也为Gee版本0.8更新,将是:

[indent=4]
uses
    Gee

init
    var d = new dict of string,string
    d["fruit"] = "apple"
    d["animal"] = "dog"
    d.set("plant","cactus")
    d.set("animal","hippopotomus") /*changes from 'dog'*/
    if d.has_key("plant") == true do print( "Key 'plant' is in dictionary" )
    print "%s", d.get("animal")
    for o in d.keys do print( o )
    for o in d.values do print( o )
    d.unset("animal")

我不知道print语句和print函数调用之间的区别,但您似乎找到了一个。我猜解析器正在寻找do一个动作,一个动作应该是一个函数调用。

对于Genie教程中的示例,您错过了评论&#39;请注意,而不是&#34; d.get_keys()&#34;它是&#34; d.keys&#34;在较新版本的Gee&#39;。 Gee 0.8实际上是较新的版本,所以你应该使用for s in d.keys。我已经更新了教程以显示更新的版本,因为Gee 0.8已经存在很长时间了。工作示例是:

[indent=4]
uses
    Gee

init
    /* test dicts */
    var d = new dict of string,string

    /* add or change entries with following */
    d["Genie"] = "Great"
    d["Vala"] = "Rocks"

    /* access entires using d[key] */
    for var s in d.keys
        print "%s => %s", s, d[s]

关于不推荐使用[Deprecated]属性的编译器警告是因为Vala 0.32将其替换为[Version]属性,而Gee绑定尚未更新。