NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Pointers considered important (Score:1)
Understanding pointers remains an important cornerstone of understanding how the machine works. They’re how you get any nontrivial work done on the machine level. You don’t want to use them in everyday programming, sure, but if you don’t understand pointers, you’re not going to understand why Perl’s data structures are as costly as they are, when you should worry about it and when not, why
substris not as cheap as you would instinctively imagine, etc pp. My knowledge of assembler has a direct (if generally faint) impact on how I write Perl.Reply to This
Re: (Score:1)
My knowledge of assembler has a direct (if generally faint) impact on how I write Perl.
If anything, I think assembler helped me understand pointers better than C, because of the way data is untyped.
The main reason I answered how I did was that "pointers" is really shorthand in C for a whole bunch of different concepts. Many of them you can learn in other languages. Some of them you can't.