Search Results

1
vote
2answers
139 views

Passing a concrete List of EnumMap objects to generic List of EnumMap parameter causes compile error

I have a piece of code that I think should compile, but it doesn't. Here is the code: public class Program { public void myMethod(List<EnumMap<? extends MyInterface, String> …
3
votes

When to use final

If you are writing a application that someone will have to read the code after, say, 1 year, then yes, use final on variable that should not be modified all the time. By doing this, your code will …
2
votes

Is Eclipse the best IDE for Java?

I don't know if Eclipse is THE BEST Java IDE, but it is definitely very decent and my favorite IDE. I tried IntelliJ briefly before, and found that it's pretty similar to Eclipse (IntelliJ might of …
0
votes

Code compiling in eclipse but not on command line

Are you sure your commandline and eclipse are using same version of Java compiler and same compile setting? To find you what version of Java you are using in command line type: Java -version …
1
vote

What is stopping you from using static analysis tools?

Back in college I used ESC/Java for static analysis, whenever I encounter problem with it, the only place I can look for answer was ESC/Java's manual; couldn't find any useful discussion from Googl …