函数主要是在共享库的时候要经常使用到,实现代码的重用,少写重复的代码。
函数不仅仅处理逻辑,还可以将值返回。一般函数和变量定义在pipeline的外层,变量放pipeline上面,函数放pipeline下面。
/*
def关键字 定义函数名为PrintMes, 带有一个参数msg,语句块内容是打印msg参数的值,返回msg值。
将PrintMsg函数的执行结果返回给response变量。
打印response
*/def PrintMsg(msg){println(msg)return msg
}response = PrintMsg("jenkins ok okok!")
println(response)