使用::操作符访问成员引用的方法或属性。只能在lambda表达式中使用。
val numberRegex = "\\d+".toRegex() val numbers = listOf("abc", "123", "456").filter(numberRegex::matches)