Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
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, 6087👍, 0💬
Popular Posts:
How To Enter Boolean Values in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...
How To Change System Global Area (SGA)? - Oracle DBA FAQ - Introduction to Oracle Database 10g Expre...
Do events have return type ? No, events do not have return type.