Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Does Perl have reference type?
Does Perl have reference type
✍: Guest
Yes. Perl can make a scalar or hash type reference by using backslash operator. For example:
$str = "here we go"; # a scalar variable $strref = \$str; # a reference to a scalar @array = (1..10); # an array $arrayref = \@array; # a reference to an array
Note that the reference itself is a scalar.
2007-11-20, 5766👍, 0💬
Popular Posts:
How To Check the Oracle TNS Settings? - Oracle DBA FAQ - ODBC Drivers, DSN Configuration and ASP Con...
I have 5 questions please give me the answer ,explanation,suggestions if any?? what is PMP(project m...
What Information Is Needed to Connect SQL*Plus an Oracle Server? - Oracle DBA FAQ - Introduction to ...
What is normalization? What are different types of normalization? It is set of rules that have been ...
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, ...