1
vote
Creating non-reverse-engineerable java programs
Elie, The user can use other tools to know where your program is connecting to, a simple netstat would do.
…
0
votes
Is there a memory efficient replacement of java.lang.String?
If you can predict the frequencies of the chars you will be using, you can use some kind of Huffman code implementation, I am thinking of something like this:
class HString:
Str …
0
votes
Are Anonymous Classes a bad idea?
Yes they are.
Actually, non static inner classes are dangerous. Especially if they keep a reference to the containing object, it is a very common source of memory leaks because of cyclic re …
2
votes
How do you make REALLY large boolean arrays using Java?
You can use an array of longs, encapsulated in a class that would handle all the operations on the array. Something like your own implementation of BitSet.
…
