2
scala中是否有語法或方法來訪問case語句中的整個匹配結構?斯卡拉,如何訪問整個匹配:X匹配{case Y(z)as matched =>
爲了澄清,如果有一個 「爲」 關鍵詞,我們可以做到這一點:
x match {
case Y(z) as matched =>
// do stuff both with "matched" and "z" here ...
...
}
scala中是否有語法或方法來訪問case語句中的整個匹配結構?斯卡拉,如何訪問整個匹配:X匹配{case Y(z)as matched =>
爲了澄清,如果有一個 「爲」 關鍵詞,我們可以做到這一點:
x match {
case Y(z) as matched =>
// do stuff both with "matched" and "z" here ...
...
}
可能的重複[斯卡拉有一個語句相當於ML的「作爲」聲明?](http://stackoverflow.com/questions/13205726/does-scala-have-a-statement-equivalent-to-mls-as-statement ) – DaoWen