1

我刚开始学习 C# 和 OpenTK(我已经了解 Java 和 C++)。我在 OpenTK 提供的演示代码中遇到了这行代码:

if (Keyboard[Key.Escape])
            Exit();

如果按下 Esc 按钮,Keyboard[Key.Escape] 将返回 true。但是,我不认识这种语法。键盘不是数组。谁能向我解释一下这种语法是什么以及它是如何工作的?参考链接就足够了。感谢您的时间。

4

1 回答 1

3

在 c# 中,任何对象都可以实现启用括号 [] 语法的索引属性,这就是这里发生的事情。以下是一个简单的示例——虽然它显然不是传统意义上的数组,但它仍然具有可用的索引器语法。在您的情况下,该属性看起来是一个布尔值:

class Foo
{
    private string _foo; 

    public Foo(string foo)
    {
        _foo = foo; 
    }

    public bool this[string foo]  // the indexer can be anything
    {
        get                  // the getter can work however the programmer wants
        {
            return _foo == foo;
        }
    }
}

可以这样使用:

        Foo f = new Foo("Hello World!");

        bool foo = f["Hello World!"]; // will return true
于 2011-07-08T04:18:17.647 回答