&在 PHP 中,您可以选择在函数定义中通过引用传递参数:
someFunction($byValue, &$byReference) {
// $byValue is passed in by value
// $byReference is passed in by reference due to the preceding &
}
这在 Kotlin 中可能吗?如果没有,有谁知道是否有计划?
牛魔王的故事
相关分类