Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Hand referance

by sierrathedog04 (Hermit)
on Feb 24, 2001 at 10:05 UTC ( [id://60626]=note: print w/replies, xml ) Need Help??


in reply to Hand referance

Brian L. Matthews explains it here as follows:
  1. A reference is not a memory address. If you go to the memory address corresponding to the scalar value of a reference you will not find your data there.
  2. A reference contains type information. A mere memory address, on the other hand, contains no type information and thus can store any object.
  3. Larry Wall intentionally decided to use the term "reference" rather than "pointer" so that people would understand that Perl is not pointing to a memory address.

As Larry points out, Perl is not appropriate for all applications. For example, Perl itself is not written in Perl, it is written in C.

If you have an application which requires low-level manipulation of the contents of memory addresses then that application is not an appropriate candidate for coding in Perl.

Furthermore, it says in the Learning Perl book by our own Merlyn et al that a reference is somewhat like a pointer, but it is safer. Presumably one reason that a reference is safer is that one cannot easily manipulate references to poke holes that can be exploited in an operating system.

Replies are listed 'Best First'.
Re: Re: Hand referance
by Fingo (Monk) on Feb 24, 2001 at 16:49 UTC
    Thanks. I guss I will use somethin else to do this.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://60626]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-03-28 18:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found