本文共 1028 字,大约阅读时间需要 3 分钟。
package com.easy.kotlin// 简单好用的 Kotlin 类型别名, 我们使用 G,F,H 声明了3个函数类型(有点类似Java 中的接口类型的概念)typealias G = (String) -> Inttypealias F = (Int) -> Booleantypealias H = (String) -> Booleanfun main(args: Array) { val h = h(::g, ::f) val strList = listOf("a", "ab", "abc", "abcd", "abcde", "abcdef", "abcdefg") // 非常好用的流式 API filter,flat,map 等等 val mstrList = strList.filter(h) println(mstrList) mstrList.forEachIndexed { index, value -> println("$value = ${value.length}") } println(foo(1, { it -> it + 1 })) println(foo(10, { it -> it * it }))}// 简单直接的函数定义fun f(x: Int) = x % 2 != 0fun g(s: String) = s.length// 简单优雅的高阶函数定义(复合函数): compose(f, g) = f(g(*))fun h(g: G, f: F): H { return { x -> f(g(x)) }}// 这个foo函数类型是: (Int) -> T, 正好也就是传入的函数参数 transformfun foo(x: Int = 1, transform: (Int) -> T = { it as T }) = transform(x)
运行上面的代码,输出:
[a, abc, abcde, abcdefg]a = 1abc = 3abcde = 5abcdefg = 72100
具体的代码,参照注释阅读即可。
转载地址:http://dqodx.baihongyu.com/