无涯教程-Perl - endnetent函数

描述

此功能告诉系统您不再希望使用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;

执行上述代码后,将产生以下输出-

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

你可能感兴趣的:(无涯教程,perl)