亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? posix.pod

?? UNIX下perl實現(xiàn)代碼
?? POD
?? 第 1 頁 / 共 4 頁
字號:
This is identical to Perl's builtin C<rewinddir()> function forrewinding directory entry streams, see L<perlfunc/rewinddir>.=item rmdirThis is identical to Perl's builtin C<rmdir()> functionfor removing (empty) directories, see L<perlfunc/rmdir>.=item scanfscanf() is C-specific, use E<lt>E<gt> and regular expressions instead,see L<perlre>.=item setgidSets the real group identifier for this process.Identical to assigning a value to the Perl's builtin C<$)> variable,see L<perlvar/$UID>.=item setjmpC<setjmp()> is C-specific: use C<eval {}> instead,see L<perlfunc/eval>.=item setlocaleModifies and queries program's locale.  The following examples assume	use POSIX qw(setlocale LC_ALL LC_CTYPE);has been issued.The following will set the traditional UNIX system locale behavior(the second argument C<"C">).	$loc = setlocale( LC_ALL, "C" );The following will query the current LC_CTYPE category.  (No secondargument means 'query'.)	$loc = setlocale( LC_CTYPE );The following will set the LC_CTYPE behaviour according to the localeenvironment variables (the second argument C<"">).Please see your systems L<setlocale(3)> documentation for the localeenvironment variables' meaning or consult L<perllocale>.	$loc = setlocale( LC_CTYPE, "" );The following will set the LC_COLLATE behaviour to ArgentinianSpanish. B<NOTE>: The naming and availability of locales depends onyour operating system. Please consult L<perllocale> for how to findout which locales are available in your system.	$loc = setlocale( LC_ALL, "es_AR.ISO8859-1" );=item setpgidThis is similar to the C function C<setpgid()> forsetting the process group identifier of the current process.Returns C<undef> on failure.=item setsidThis is identical to the C function C<setsid()> forsetting the session identifier of the current process.=item setuidSets the real user identifier for this process.Identical to assigning a value to the Perl's builtin C<$E<lt>> variable,see L<perlvar/$UID>.=item sigactionDetailed signal management.  This uses C<POSIX::SigAction> objects for theC<action> and C<oldaction> arguments.  Consult your system's C<sigaction>manpage for details.Synopsis:	sigaction(sig, action, oldaction = 0)Returns C<undef> on failure.=item siglongjmpsiglongjmp() is C-specific: use L<perlfunc/die> instead.=item sigpendingExamine signals that are blocked and pending.  This uses C<POSIX::SigSet>objects for the C<sigset> argument.  Consult your system's C<sigpending>manpage for details.Synopsis:	sigpending(sigset)Returns C<undef> on failure.=item sigprocmaskChange and/or examine calling process's signal mask.  This usesC<POSIX::SigSet> objects for the C<sigset> and C<oldsigset> arguments.Consult your system's C<sigprocmask> manpage for details.Synopsis:	sigprocmask(how, sigset, oldsigset = 0)Returns C<undef> on failure.=item sigsetjmpC<sigsetjmp()> is C-specific: use C<eval {}> instead,see L<perlfunc/eval>.=item sigsuspendInstall a signal mask and suspend process until signal arrives.  This usesC<POSIX::SigSet> objects for the C<signal_mask> argument.  Consult yoursystem's C<sigsuspend> manpage for details.Synopsis:	sigsuspend(signal_mask)Returns C<undef> on failure.=item sinThis is identical to Perl's builtin C<sin()> functionfor returning the sine of the numerical argument,see L<perlfunc/sin>.  See also L<Math::Trig>.=item sinhThis is identical to the C function C<sinh()>for returning the hyperbolic sine of the numerical argument.See also L<Math::Trig>.=item sleepThis is identical to Perl's builtin C<sleep()> functionfor suspending the execution of the current for processfor certain number of seconds, see L<perlfunc/sleep>.=item sprintfThis is similar to Perl's builtin C<sprintf()> functionfor returning a string that has the arguments formatted as requested,see L<perlfunc/sprintf>.=item sqrtThis is identical to Perl's builtin C<sqrt()> function.for returning the square root of the numerical argument,see L<perlfunc/sqrt>.=item srandGive a seed the pseudorandom number generator, see L<perlfunc/srand>.=item sscanfsscanf() is C-specific, use regular expressions instead,see L<perlre>.=item statThis is identical to Perl's builtin C<stat()> functionfor retutning information about files and directories.=item strcatstrcat() is C-specific, use C<.=> instead, see L<perlop>.=item strchrstrchr() is C-specific, see L<perlfunc/index> instead.=item strcmpstrcmp() is C-specific, use C<eq> or C<cmp> instead, see L<perlop>.=item strcollThis is identical to the C function C<strcoll()>for collating (comparing) strings transformed usingthe C<strxfrm()> function.  Not really needed sincePerl can do this transparently, see L<perllocale>.=item strcpystrcpy() is C-specific, use C<=> instead, see L<perlop>.=item strcspnstrcspn() is C-specific, use regular expressions instead,see L<perlre>.=item strerrorReturns the error string for the specified errno.Identical to the string form of the C<$!>, see L<perlvar/$ERRNO>.=item strftimeConvert date and time information to string.  Returns the string.Synopsis:	strftime(fmt, sec, min, hour, mday, mon, year, wday = -1, yday = -1, isdst = -1)The month (C<mon>), weekday (C<wday>), and yearday (C<yday>) begin at zero.I.e. January is 0, not 1; Sunday is 0, not 1; January 1st is 0, not 1.  Theyear (C<year>) is given in years since 1900.  I.e., the year 1995 is 95; theyear 2001 is 101.  Consult your system's C<strftime()> manpage for detailsabout these and the other arguments.If you want your code to be portable, your format (C<fmt>) argumentshould use only the conversion specifiers defined by the ANSI Cstandard.  These are C<aAbBcdHIjmMpSUwWxXyYZ%>.The given arguments are made consistentas though by calling C<mktime()> before calling your system'sC<strftime()> function, except that the C<isdst> value is not affected.The string for Tuesday, December 12, 1995.	$str = POSIX::strftime( "%A, %B %d, %Y", 0, 0, 0, 12, 11, 95, 2 );	print "$str\n";=item strlenstrlen() is C-specific, use C<length()> instead, see L<perlfunc/length>.=item strncatstrncat() is C-specific, use C<.=> instead, see L<perlop>.=item strncmpstrncmp() is C-specific, use C<eq> instead, see L<perlop>.=item strncpystrncpy() is C-specific, use C<=> instead, see L<perlop>.=item strpbrkstrpbrk() is C-specific, use regular expressions instead,see L<perlre>.=item strrchrstrrchr() is C-specific, see L<perlfunc/rindex> instead.=item strspnstrspn() is C-specific, use regular expressions instead,see L<perlre>.=item strstrThis is identical to Perl's builtin C<index()> function,see L<perlfunc/index>.=item strtodString to double translation. Returns the parsed number and the numberof characters in the unparsed portion of the string.  TrulyPOSIX-compliant systems set $! ($ERRNO) to indicate a translationerror, so clear $! before calling strtod.  However, non-POSIX systemsmay not check for overflow, and therefore will never set $!.strtod should respect any POSIX I<setlocale()> settings.To parse a string $str as a floating point number use    $! = 0;    ($num, $n_unparsed) = POSIX::strtod($str);The second returned item and $! can be used to check for valid input:    if (($str eq '') || ($n_unparsed != 0) || !$!) {        die "Non-numeric input $str" . $! ? ": $!\n" : "\n";    }When called in a scalar context strtod returns the parsed number.=item strtokstrtok() is C-specific, use regular expressions instead, seeL<perlre>, or L<perlfunc/split>.=item strtolString to (long) integer translation.  Returns the parsed number andthe number of characters in the unparsed portion of the string.  TrulyPOSIX-compliant systems set $! ($ERRNO) to indicate a translationerror, so clear $! before calling strtol.  However, non-POSIX systemsmay not check for overflow, and therefore will never set $!.strtol should respect any POSIX I<setlocale()> settings.To parse a string $str as a number in some base $base use    $! = 0;    ($num, $n_unparsed) = POSIX::strtol($str, $base);The base should be zero or between 2 and 36, inclusive.  When the baseis zero or omitted strtol will use the string itself to determine thebase: a leading "0x" or "0X" means hexadecimal; a leading "0" meansoctal; any other leading characters mean decimal.  Thus, "1234" isparsed as a decimal number, "01234" as an octal number, and "0x1234"as a hexadecimal number.The second returned item and $! can be used to check for valid input:    if (($str eq '') || ($n_unparsed != 0) || !$!) {        die "Non-numeric input $str" . $! ? ": $!\n" : "\n";    }When called in a scalar context strtol returns the parsed number.=item strtoulString to unsigned (long) integer translation.  strtoul() is identicalto strtol() except that strtoul() only parses unsigned integers.  SeeL</strtol> for details.Note: Some vendors supply strtod() and strtol() but not strtoul().Other vendors that do supply strtoul() parse "-1" as a valid value.=item strxfrmString transformation.  Returns the transformed string.	$dst = POSIX::strxfrm( $src );Used in conjunction with the C<strcoll()> function, see L</strcoll>.Not really needed since Perl can do this transparently, seeL<perllocale>.=item sysconfRetrieves values of system configurable variables.The following will get the machine's clock speed.	$clock_ticks = POSIX::sysconf( &POSIX::_SC_CLK_TCK );Returns C<undef> on failure.=item systemThis is identical to Perl's builtin C<system()> function, seeL<perlfunc/system>.=item tanThis is identical to the C function C<tan()>, returning thetangent of the numerical argument.  See also L<Math::Trig>.=item tanhThis is identical to the C function C<tanh()>, returning thehyperbolic tangent of the numerical argument.   See also L<Math::Trig>.=item tcdrainThis is similar to the C function C<tcdrain()> for drainingthe output queue of its argument stream.Returns C<undef> on failure.=item tcflowThis is similar to the C function C<tcflow()> for controllingthe flow of its argument stream.Returns C<undef> on failure.=item tcflushThis is similar to the C function C<tcflush()> for flushingthe I/O buffers of its argumeny stream.Returns C<undef> on failure.=item tcgetpgrpThis is identical to the C function C<tcgetpgrp()> for returning theprocess group identifier of the foreground process group of the controllingterminal.=item tcsendbreakThis is similar to the C function C<tcsendbreak()> for sendinga break on its argument stream.Returns C<undef> on failure.=item tcsetpgrpThis is similar to the C function C<tcsetpgrp()> for setting theprocess group identifier of the foreground process group of the controllingterminal.Returns C<undef> on failure.=item timeThis is identical to Perl's builtin C<time()> functionfor returning the number of seconds since the epoch(whatever it is for the system), see L<perlfunc/time>.=item timesThe times() function returns elapsed realtime since some point in the past(such as system startup), user and system times for this process, and userand system times used by child processes.  All times are returned in clockticks.    ($realtime, $user, $system, $cuser, $csystem) = POSIX::times();Note: Perl's builtin C<times()> function returns four values, measured inseconds.=item tmpfileUse method C<IO::File::new_tmpfile()> instead, or see L<File::Temp>.=item tmpnamReturns a name for a temporary file.	$tmpfile = POSIX::tmpnam();For security reasons, which are probably detailed in your system'sdocumentation for the C library tmpnam() function, this interfaceshould not be used; instead see L<File::Temp>.=item tolowerThis is identical to the C function, except that it can apply to a singlecharacter or to a whole string.  Consider using the C<lc()> function,see L<perlfunc/lc>, or the equivalent C<\L> operator inside doublequotishstrings.=item toupperThis is identical to the C function, except that it can apply to a singlecharacter or to a whole string.  Consider using the C<uc()> function,see L<perlfunc/uc>, or the equivalent C<\U> operator inside doublequotishstrings.=item ttynameThis is identical to the C function C<ttyname()> for returning thename of the current terminal.=item tznameRetrieves the time conversion information from the C<tzname> variable.	POSIX::tzset();	($std, $dst) = POSIX::tzname();=item tzsetThis is identical to the C function C<tzset()> for settingthe current timezone based on the environment variable C<TZ>,to be used by C<ctime()>, C<localtime()>, C<mktime()>, and C<strftime()>functions.=item umaskThis is identical to Perl's builtin C<umask()> functionfor setting (and querying) the file creation permission mask,see L<perlfunc/umask>.=item unameGet name of current operating system.	($sysname, $nodename, $release, $version, $machine) = POSIX::uname();Note that the actual meanings of the various fields are notthat well standardized, do not expect any great portability.The C<$sysname> might be the name of the operating system,the C<$nodename> might be the name of the host, the C<$release>might be the (major) release number of the operating system,the C<$version> might be the (minor) release number of the

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线免费观看日韩欧美| 日韩国产精品久久久久久亚洲| 日本道免费精品一区二区三区| 日本中文一区二区三区| 亚洲日韩欧美一区二区在线| 精品成人免费观看| 欧美视频一区二区三区在线观看 | 成人h精品动漫一区二区三区| 亚洲无人区一区| 久久女同互慰一区二区三区| 欧美在线观看一区二区| 国产精品中文有码| 蜜臀久久99精品久久久画质超高清 | 日韩一区二区三区四区| 色先锋aa成人| 99麻豆久久久国产精品免费优播| 久久99国产精品免费网站| 亚洲一线二线三线久久久| 国产精品灌醉下药二区| 久久久久久久久久久黄色| 日韩欧美在线一区二区三区| 欧美日韩精品欧美日韩精品一 | 奇米色一区二区三区四区| 一区二区三区在线高清| 18欧美乱大交hd1984| 国产欧美日韩另类一区| 日韩美女主播在线视频一区二区三区 | 欧美zozozo| 欧美一区二区三区男人的天堂| 欧美午夜精品久久久久久孕妇| 99久久婷婷国产精品综合| 福利一区二区在线| 国产a区久久久| 福利电影一区二区三区| 成人激情av网| eeuss鲁片一区二区三区| 不卡欧美aaaaa| 成人av午夜影院| av在线不卡免费看| 色八戒一区二区三区| 一本大道久久a久久综合婷婷| 91视频.com| 亚洲欧美在线高清| 国产福利精品一区| 国产一区二区在线观看视频| 青青草精品视频| 麻豆精品国产91久久久久久| 毛片av一区二区| 国产资源在线一区| 国产成人a级片| 99精品久久只有精品| 色欲综合视频天天天| 91色在线porny| 欧美三级视频在线| 日韩一级在线观看| 中文字幕国产一区| 综合激情网...| 亚洲国产精品久久艾草纯爱 | 精油按摩中文字幕久久| 精品一区二区在线看| 国产精品一区二区在线播放 | 亚洲chinese男男1069| 日韩精品成人一区二区三区| 久久99精品久久久久| 国产精品综合二区| 成人av动漫网站| 国产免费观看久久| 中日韩av电影| 亚洲另类在线一区| 日韩成人午夜精品| 成人一区二区三区视频在线观看 | 天堂精品中文字幕在线| 精品一区二区三区的国产在线播放| 国产成人av一区二区三区在线| av在线播放成人| 欧美一区二区三区成人| 国产欧美日本一区视频| 亚洲午夜羞羞片| 国产一区二区成人久久免费影院| 91影院在线观看| 欧美一区二区国产| 综合久久久久久| 看电视剧不卡顿的网站| 99精品视频在线观看| 日韩精品在线一区| 亚洲男女一区二区三区| 紧缚奴在线一区二区三区| 91色视频在线| 国产日韩欧美不卡在线| 日韩制服丝袜先锋影音| 成人av网站在线| 精品国一区二区三区| 亚洲欧美偷拍三级| 国产麻豆视频精品| 欧美精品亚洲二区| 国产精品高潮久久久久无| 日本不卡123| 日本高清视频一区二区| 久久久久久久久久久99999| 日韩和欧美一区二区| 久久久噜噜噜久久人人看 | 日韩三级av在线播放| 国产精品人妖ts系列视频 | 色av成人天堂桃色av| 欧美成人精品二区三区99精品| 亚洲欧美自拍偷拍色图| 精品一二线国产| 欧美美女激情18p| 一区二区三区自拍| 成人久久视频在线观看| 日韩精品在线一区| 日韩精品视频网| 欧美亚洲一区二区在线观看| 中文字幕亚洲成人| 春色校园综合激情亚洲| 久久精品视频在线看| 天堂午夜影视日韩欧美一区二区| 色综合视频在线观看| 中文字幕日本不卡| 成人免费视频网站在线观看| 国产亚洲va综合人人澡精品 | 国产精品一级在线| 欧美不卡在线视频| 免费一级片91| 欧美一级久久久| 亚洲精品乱码久久久久久| 久久美女高清视频| 日本成人中文字幕在线视频| 欧美日韩电影在线| 婷婷国产v国产偷v亚洲高清| 欧美在线观看一区| 亚洲成人黄色影院| 欧美群妇大交群的观看方式| 亚洲大片一区二区三区| 精品视频全国免费看| 视频一区二区三区中文字幕| 欧美美女网站色| 美国十次综合导航| 精品久久久三级丝袜| 国产一区二区三区四区五区美女| 精品国产免费久久| 国产美女av一区二区三区| 国产日产精品一区| zzijzzij亚洲日本少妇熟睡| 1024精品合集| 欧美性猛片xxxx免费看久爱| 婷婷开心激情综合| 日韩欧美国产三级电影视频| 国内精品久久久久影院一蜜桃| 久久精品一区二区| av在线免费不卡| 亚洲h精品动漫在线观看| 日韩一级在线观看| 国产不卡免费视频| 亚洲色欲色欲www| 欧美日韩成人一区二区| 精品一区精品二区高清| 国产精品美女一区二区三区| 色综合天天视频在线观看| 三级精品在线观看| 亚洲精品一区二区在线观看| 成人动漫中文字幕| 亚洲国产一区视频| 欧美电视剧在线看免费| 国产91精品露脸国语对白| 亚洲理论在线观看| 欧美一激情一区二区三区| 国产成人亚洲综合色影视| 亚洲狠狠丁香婷婷综合久久久| 欧美一区二视频| 成人天堂资源www在线| 亚洲一区二区精品久久av| 欧美成人欧美edvon| 99久久99久久免费精品蜜臀| 日韩电影在线免费| 国产精品免费丝袜| 91精品国产全国免费观看| 成人激情免费视频| 日韩国产在线观看| 国产精品福利在线播放| 日韩欧美精品在线| 色一情一乱一乱一91av| 精品无人码麻豆乱码1区2区| 亚洲欧美日韩久久| 久久网站最新地址| 欧美图区在线视频| 福利91精品一区二区三区| 首页欧美精品中文字幕| 亚洲日本在线a| 久久天天做天天爱综合色| 精品视频在线免费看| 国产不卡免费视频| 欧美a级理论片| 亚洲一区国产视频| 国产女人18毛片水真多成人如厕 | 亚洲精品高清在线| 久久综合九色综合97婷婷| 欧美三级在线播放| 波多野结衣一区二区三区| 久久精品国产免费看久久精品|