Search Results

6
votes
9answers
211 views

What should I keep in mind in order to refactor huge code base?

I'm going to refactor certain parts in a huge code base (18000+ Java classes). Goal is to be able to extract lower layers as independent libraries to be reused in other projects that currently use …
0
votes
3answers
475 views

How to change JTree view dynamically when a nodes object’s state changes?

I'm implementing a Java JTree panel. This panel holds a TreeModel build from a set ofdatastructures that are treelike (a list of lists of composites - different classes). I get these datastructure …
2
votes
3answers
750 views

How do I calculate someone’s age in Java?

I want to return an age in years as an int in a Java method. What I have now is the following where getBirthDate() returns a Date object (with the birth date ;-)): public int getAge …
2
votes

Why don’t Java Wrapper Classes have no-arg constructors?

There's no use in providing the primitive type in a constructor. The type of the wrapper class indicates the primitive type. Since an instantiated wrapper object cannot change (immutable), there is …
0
votes

Java iterator

An Iterable is something different from an Iterator. An Iterable is something you can iterate through, like a List. You use an Iterator for that. Your questions is …
1
vote

Real time code coverage viewer tool for inspecting live Java apps?

Have a look at clover. It may be what you are looking for. Not free, but nice. …
0
votes

Howto manage the game state in face of the EDT?

It looks like you need a priorityqueue to put the updates to the model on, in which updates frmo the user have priority over the updates from the simulation and other inputs. What I hear you saying …
0
votes

What is the fastest method for reading from a text file in Java?

Depends on what you want to read. The complete file, or from a specific location, do you need to able to seatch through it, or do you want to read the complete text in one go? …
1
vote

Is there a difference between x++ and ++x in java?

Yes, using ++X, X+1 will be used in the expression. Using X++, X will be used in the expression and X will only be increased after the expression has been evaluated. So if X = 9, using ++X, …
0
votes

When should we use Java’s Thread over Executor?

You don't use Thread unless you need more specific behaviour that is not found in Thread itself. You then extend Thread and add your specifically wanted behaviour. Else just use Runnable o …