FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
Java
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
February 01, 2000

Java Q&A

(Page 4 of 6)
Feb00: Java Q&A


Void method() {
  // this creates a large object 
  Biggie big = readIt();
  // this condenses it
  Item item = findIt(big);
  // we'd really like to reuse big's memory
  // big = null;
  // this method is going to run a long time
  parseIt(item);
}

Example 3: A method is supposed to read through a file, parse items out of it, and deal with certain elements in it.

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK