1 Star 1 Fork 1

user_1413365/groovyLearning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
basic_closure.groovy 382 Bytes
一键复制 编辑 原始数据 按行查看 历史
user_1413365 提交于 2023-02-22 15:37 . groovy bak
//
def loopFile(){
// https://stackoverflow.com/questions/15231810/pass-method-as-parameter-in-groovy 将方法作为参数传递给另外一个方法
def dir = new File("D:\\data\\appdatas\\cat")
dir.eachFile(groovy.io.FileType.FILES, this.&printFile)
print this
}
def printFile(file){
println file.name
println file.path
}
loopFile()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Groovy
1
https://gitee.com/lqzkcx3/groovy-learning.git
git@gitee.com:lqzkcx3/groovy-learning.git
lqzkcx3
groovy-learning
groovyLearning
master

搜索帮助