zeromemory or memset in Java?

Started by
3 comments, last by Eskhan 20 years, 9 months ago
Is there any way in Java to zero out a class in the same manner that you can zero out a struct or class in C++?
--------------------Though this program be madness, yet there is a method in't
Advertisement
No. Why would you want to?


AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.
--AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.[Project site] [IRC channel] [Blog]
As Arild said, no.
All variables are set to 0 by default.
____________________________________________________________AAAAA: American Association Against Adobe AcrobatYou know you hate PDFs...
Oh, I''m just wondering. It would certainly be useful in a certain class in my project where there are buffers that should be zeroed out after use, just wondered if there was a way to do it that would save me from typing so much
--------------------Though this program be madness, yet there is a method in't

This topic is closed to new replies.

Advertisement