Did anyone else notice the “0 comments” down where we sing out our plea for suggestions on who might be able to give us some legal help for the Disseminary? I did.
Posted by AKMA at January 29, 2003 11:39 PM | TrackBackLemme try...
Posted by: Donna at January 30, 2003 09:44 AMI'd love to help, but I'm licensed only in Colorado, while you're in Illinois. The Illinois bar and courts would frown upon that sort of thing. I'm sure I have a few classmates licensed in Illinois, but I can't remember who (except for one who's clerking for a 5th Circuit Court of Appeals judge in Texas and who has no time).
So, I'm afraid I can't be of much help, even though I'd like to.
Posted by: Tim Hadley at January 30, 2003 12:27 PMThis is another function provided for dealing with the heap. After you've created some space in the Heap, it's yours until you let go of it. When your program is done using it, you have to explicitly tell the computer that you don't need it anymore or the computer will save it for your future use (or until your program quits, when it knows you won't be needing the memory anymore). The call to simply tells the computer that you had this space, but you're done and the memory can be freed for use by something else later on.
Posted by: Chroseus at January 13, 2004 12:14 AMSeth Roby graduated in May of 2003 with a double major in English and Computer Science, the Macintosh part of a three-person Macintosh, Linux, and Windows graduating triumvirate.
Posted by: Hamond at January 13, 2004 12:14 AMBut variables get one benefit people do not
Posted by: Tobias at January 13, 2004 12:16 AMEarlier I mentioned that variables can live in two different places. We're going to examine these two places one at a time, and we're going to start on the more familiar ground, which is called the Stack. Understanding the stack helps us understand the way programs run, and also helps us understand scope a little better.
Posted by: Bennett at January 13, 2004 09:48 AMThese secret identities serve a variety of purposes, and they help us to understand how variables work. In this lesson, we'll be writing a little less code than we've done in previous articles, but we'll be taking a detailed look at how variables live and work.
Posted by: Jesse at January 13, 2004 09:48 AMA variable leads a simple life, full of activity but quite short (measured in nanoseconds, usually). It all begins when the program finds a variable declaration, and a variable is born into the world of the executing program. There are two possible places where the variable might live, but we will venture into that a little later.
Posted by: Tobias at January 13, 2004 09:48 AM