Tagged Questions
5
votes
4answers
4k views
Is Java HashMap.clear() and remove() memory effective?
Consider the follwing HashMap.clear() code:
/**
* Removes all of the mappings from this map.
* The map will be empty after this call returns.
*/
public void clear() {
modCount++;
Entry[] ...
4
votes
3answers
39 views
Should I first collect the files and then execute a task or should I execute tasks while collecting?)
I need to go through all files of a given folder (and its sub folders) and execute something on each file.
I was looking for a way to go through all the files recursively and found one solution in ...
2
votes
5answers
121 views
point of Byte and Short in Java (I've read the other questions)
My question is:
If I got it right from the Java disassembly, when I use
byte a=3,b=5;
System.out.println(a+b);
would actually use int instead of byte. Also all local memory slots are 4B just as ...
0
votes
12answers
372 views
C++ or Java for general programming? [closed]
Possible Duplicates:
Why should i learn C++.
Which one: C++ or Java?
Hello. I only know Java and Assembly currently but was thinking of learning C++. However, I would like to hear from ...