gpt4 book ai didi

groovy - 构造函数的第一条陈述

转载 作者:行者123 更新时间:2023-12-03 04:46:35 25 4
gpt4 key购买 nike

我编写了以下最简单的脚本:

task init << {
println "init";
}

task hello(dependsOn: init) << {
println "hello";
}

task super(dependsOn: hello) << {
println "super"
}

但是当我尝试执行 gradle super时出现错误:
build file 'D:\gradle\build.gradle': 9: Constructor call must be the first statement in 
a constructor. at line: 9 column: 12.
File: build_69b6a3lkqqtk7j84lsls47ccta @ line 9, column 12.
task super(dependsOn: hello) << {

怎么了

最佳答案

super是Groovy的保留关键字,用于调用父类构造函数。将其更改为例如super2并运行gradle super2,它将起作用。

关于groovy - 构造函数的第一条陈述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26944487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com