描述
此功能告诉系统您不再希望使用getnetent从网络列表中读取条目。
语法
以下是此函数的简单语法-
endnetent
返回值
此函数不返回任何值。
例
以下是显示其基本用法的示例代码-
#!/usr/bin/perl use Socket; while ( ($name, $aliases, $addrtype, $net) =getnetent() ) { print "Name=$name\n"; print "Aliases=$aliases\n"; print "Addrtype=$addrtype\n"; print "Net=$net\n"; } setnetent(1); # Rewind the database; while ( ($name, $aliases, $addrtype, $net) =getnetent() ) { print "Name=$name\n"; print "Aliases=$aliases\n"; print "Addrtype=$addrtype\n"; print "Net=$net\n"; } endnetent(); # Closes the database;
执行上述代码后,将产生以下输出-文章来源:https://www.toymoban.com/news/detail-632837.html
Name=default Aliases= Addrtype=2 Net=0 Name=loopback Aliases= Addrtype=2 Net=2130706432 Name=link-local Aliases= Addrtype=2 Net=2851995648 Name=default Aliases= Addrtype=2 Net=0 Name=loopback Aliases= Addrtype=2 Net=2130706432 Name=link-local Aliases= Addrtype=2 Net=2851995648
Perl 中的 endnetent函数 - 无涯教程网无涯教程网提供描述此功能告诉系统您不再希望使用getnetent从网络列表中读取条目。 语法以下是此函数...https://www.learnfk.com/perl/perl-endnetent.html文章来源地址https://www.toymoban.com/news/detail-632837.html
到了这里,关于无涯教程-Perl - endnetent函数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!