作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Python 中的函数可以使用keyword = value 形式的关键字参数调用。例如,以下函数:
def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'):
print "-- This parrot wouldn't", action,
print "if you put", voltage, "volts through it."
print "-- Lovely plumage, the", type
print "-- It's", state, "!"
parrot(1000)
parrot(action = 'VOOOOOM', voltage = 1000000)
parrot('a thousand', state = 'pushing up the daisies')
parrot('a million', 'bereft of life', 'jump')
最佳答案
如果你搞砸了,它不会在编译时抛出任何错误,但你可以这样做:
public function awesomefunction(input:Object):void {
if (input.foo) trace("got foo");
if (input.bar) trace("got bar");
}
awesomefunction( { foo : 23, bar : 99 } );
var obj:Object = new Object();
obj.foo = 23;
obj.bar = 99;
awesomefunction( obj );
awesomefunction( [23, 99 ] );
public function awesomefunction(input:Object):void {
if (input[0]) trace("got foo");
if (input[1]) trace("got bar");
}
public function awesomefunction(input:Object):void {
var foo:int = input.foo || input[0];
var bar:int = input.bar || input[1];
if (foo) trace("got foo:", foo);
if (bar) trace("got bar:", bar);
}
awesomefunction( { foo : 23, bar :55 } );
awesomefunction( { bar : 55, foo : 23 } );
awesomefunction( [ 23, 55 ] );
awesomefunction( { foo : 23, 1 : 55 } );
关于actionscript-3 - 如何在 ActionScript 3 函数中模拟关键字参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/410062/
我是一名优秀的程序员,十分优秀!