Search Results

0
votes

Can eclipse extract a second class in class file to its own file

Can be done in 2 refactorings : Convert Member type to top level Move …
1
vote

In eclipse, how to display inherited members in Outline view?

Looks like you can't do it. Maybe you should file it as an improvement request. …
2
votes

Do Java listeners need to be removed? (In general)

A will indeed keep B alive through the anonymous instance. But I wouldn't override finalize to address that, rather use a static inner class who doesn't keep the B alive. …
5
votes

value semantics and pointer semantics?

Java is using implicit pointer semantics for Object types and value semantics for primitives. Value semantics means that you deal directly with values and that you pass copies around. The p …
0
votes

Java memory leak

I have never used it myself, but you may find this …