In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
这篇文章给大家分享的是有关AWK用户如何自定义函数的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
一个程序包含有多个功能,每个功能我们可以独立一个函数。
函数可以提高代码的复用性。
用户自定义函数的语法格式为:
functionfunction_name(argument1,argument2,...)
{
functionbody
}
解析:
function_name是用户自定义函数的名称。函数名称应该以字母开头,其后可以是数字、字母或下划线的自由组合。AWK保留的关键字不能作为用户自定义函数的名称。
自定义函数可以接受多个输入参数,这些参数之间通过逗号分隔。参数并不是必须的。我们也可以定义没有任何输入参数的函数。
functionbody是函数体部分,它包含AWK程序代码。
以下实例我们实现了两个简单函数,它们分别返回两个数值中的最小值和最大值。我们在主函数main中调用了这两个函数。文件functions.awk代码如下:
#返回最小值
functionfind_min(num1,num2)
{
if(num1num2)
returnnum1
returnnum2
}
#主函数
functionmain(num1,num2)
{
#查找最小值
result=find_min(10,20)
print"Minimum=",result
#查找最大值
result=find_max(10,20)
print"Maximum=",result
}
#脚本从这里开始执行
BEGIN{
main(10,20)
}
执行functions.awk文件,可以得到如下的结果:
$awk-ffunctions.awk
Minimum=10
Maximum=20
感谢各位的阅读!关于"AWK用户如何自定义函数"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.