Tagged Questions

5
votes
5answers
4k views

Using wildcard for classpath?

G'day everybody, I have been using so many 3rd party libraries(jar files) that my CLASSPATH is completely messed up as i have to include the path for every single jar file that i use. ...
4
votes
6answers
1k views

Shorten array length once element is remove in Java

Note: Following is my homework/assignment, feel free not to answer if you will. I want to delete/remove an element from an String array(Set) basic, I'm not allowed to use Collections..etc. Now I ...
2
votes
5answers
178 views

How can I remove one of these if statements and shorten the code?

I have the following code. The only problem is that we run it through a checkstyle program and it comes up with the error Cyclomatic Complexity is 11 (max allowed is 10). I would like to know how can ...
0
votes
4answers
259 views

Adding ArrayList elements efficiently

How would I shorten this? int[] a1 = {2, 0, 1, 4, 3}; int[] a2 = {3, 1, 2, 0, 4}; int[] a3 = {4, 2, 3, 1, 0}; int[] a4 = {0, 3, 4, 2, 1}; int[] a5 = {1, 4, 0, 3, 2}; ArrayList<int[]> array = ...