Search Results

0
votes
1answer
335 views

What programming paradigm will be most successful in future multi-core computers?

Many of us have two or more CPU cores on our desktop today. Most applications work quite similarly to what they did when we had only one core. But what when a typical desktop machine has 1 …
1
vote

Which heap size do you prefer ?

You need to spend quite some time in JConsole or visualvm to get a clear picture on what the plateau memory usage is. Wait until everything is stable and you see the characteristic sawtooth curve …
0
votes

When do you use Java’s @Override annotation and why?

@Override on interfaces actually are helpful, because you will get warnings if you change the interface. …