奇怪的 boo 语言语法
I've run into a strange syntax in Boo Language Guide :
setter = { value | a = value }
What does the | operator mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
I've run into a strange syntax in Boo Language Guide :
setter = { value | a = value }
What does the | operator mean?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
好吧,由于从未使用过 Boo,我(有根据的)猜测它是用于将参数传递给闭包 lambda 风格的函数。 在这种情况下,{p| C } 指的是在代码 C 中采用绑定到 p 的单个参数的匿名函数。
Well, having never used Boo, my (educated) guess is that it's for passing parameter to the closure lambda-style functions. In this case, { p | C } refers to an anonymous function taking a single parameter bound to p within the code C.
亚当是对的。 该示例的要点是表明 boo 中的 lambda 具有对封闭范围的读写访问权限。
Adam is correct. The point of the example is to show that lambdas in boo have read and write access to enclosing scope.
用于指定代码块(匿名函数)的语法借用自 Ruby 和 Smalltalk
That syntax for specifying code blocks (anonymous functions) has been borrowed from Ruby and Smalltalk
Boo 的文档似乎缺乏这方面的内容——这似乎
是
The documentation of Boo seems to be lacking in this area -- it seems that
is shorthand for