Results 1 to 2 of 2

Thread: Unset a variable?

  1. #1
    Join Date
    Oct 2007
    Posts
    53
    Thanks
    13
    Thanked 1 Time in 1 Post

    Default Unset a variable?

    Hey, is it possible to unset a variable in Java like it is in PHP? I assume it is possible to free up memory...

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    No. That's not the purpose of it in PHP, either, in most cases. Both languages are garbage-collected: once all references to an object go out of scope, the object is marked as trash, and can be garbage-collected at the runtime's next convenience.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •