Hot answers tagged java
40
How about creating a method for the cases:
public void printIfMod(int value, int mod){
if (value % 10 == mod)
System.out.println(...);
}
public void printIfDiv(int value, int div){
if (value / 10 == div)
System.out.println(...);
}
Then instead of a bunch of if you have a set of calls the the two methods. You might ...
23
Here's a slight improvement using two switch statements
switch(i / 10){
case 3: // do something
break;
case 5: // do something else
break;
case 7: // do something else
break;
}
switch(i % 10){
case 3: // do something
break;
case 5: // do something else
break;
case 7: // do something else
break;
}
Unfortunately you'll ...
14
Because that's not an Exception but an Error.
You could catch it as a Throwable
} catch (Throwable e) {
or specifically as Error
} catch (Error e) {
But there's not a lot you can do with such an error, apart trying to close the application in the cleanest way you can.
From the javadoc :
An Error is a subclass of Throwable that indicates serious ...
13
theArray[1] is of compile-time type Object (since it comes from an array of Objects).
You need to cast it to Object[] to use it as an array.
The fundamental problem you're encountering is that although an array that contains itself is a perfectly valid object, it isn't a valid type.
You can nest array types arbitrarily deeply – ...
12
The problem with your current solution isn't just a long line, is that it's hard for someone to read and understand what is actually being validated.
Instead of using all the conditions in an if statement, you can create an auxiliary method that build the boolean value of that validation, and at the same time give it a meaningful name.
For instance:
...
12
Generally speaking, it's true that code that has a lot of if statements looks suspicious. Suspicious doesn't necessarily mean wrong. If the problem statement has disjoint conditions to check for (i.e. you can't group them) then you have to do them independently like you're doing.
In your case, you're having to check for divisibility without being able to ...
10
If you want to do that you should make it public or make a public wrapper method it.
If thats not possible, you can work your way around it, but thats ugly and bad and you should have really good reasons to do so.
public boolean importBook(String epubBookPath){
//The function that adds books to database.
}
or
public boolean importBookPublic(String ...
9
Instances of a class that is not extensible and whose fields are all final and themselves immutable are immutable.
Instances of a class whose fields cannot be mutated because of details of its methods are effectively immutable. For example:
class C {
final boolean canChange;
private int x;
C(boolean canChange) { this.canChange = canChange; }
...
8
Because a class must call its super class constructor always. If the super class constructor can't be accessed, then the sub class can't be initialized.
More info: JLS 8.8.10. Preventing Instantiation of a Class
Regarding Brian Roach's comments:
The call [to the parent class constructor] is only implicit if you don't do it explicitly and the parent ...
8
What is an Abstract Class?
An abstract class is a special kind of class that cannot be instantiated. So the question is why we need a class that cannot be instantiated? An abstract class is only to be sub-classed (inherited from). In other words, it only allows other classes to inherit from it but cannot be instantiated. The advantage is that it enforces ...
7
Should I make all of my fields final, and initialize during object construction?
Yes. And ensure that those types are themselves immutable, or that you create copies when you return values from getter methods. And make the class itself final. (Otherwise your class on its own may be immutable, but that doesn't mean that any instance of your class would ...
7
I had started to write an answer involving code, but many, many people beat me to it. The one thing I would say which hasn't been mentioned yet is that this particular code metric you're referring to is called cyclomatic complexity and isn't a horrendously bad thing.
In short it refers to the number of different paths that a method could take when it's ...
7
I would argue, that you're asking the wrong question. The question I think you should ask is: "How can I rewrite this code so that it is more easily understood by a human?"
The creed "eliminate if statements" is a general idea to accomplish this, but it depends heavily on the context.
The sad fact is that many of the answers obfuscate this very simple ...
7
It sounds like you need a collection of events. Try putting them in a simple data structure like an ArrayList (similar to an array, but it can expand in size at run time). This way you won't have multiple variables event1, event2, etc., but just one variable named events (or something similar) that holds as many objects as you need.
6
I'm assuming that you're not using a version control system.
Go get one now. Run - Don't walk.
Get the company to invest a couple of bucks in a private Github account or something similar. Get your code into the version control system, and then send your replacement the credentials to log into the version control system.
6
The SLF4J project has a jul-to-slf4j bridge that can be used to redirect java.util.logging.Logger calls to SLF4J. You could use that (by making your MyLogger implement the interface defined by SLF4J).
Note that, however, unlike all other logging libraries, j.u.l. is hard-wired into the Java class libraries and cannot be bridged without a performance ...
6
With reflection, you'll need an instance of BookView to invoke the method with (unless it's a static method).
BookView yourInstance = new BookView();
Method m = BookView.class.getDeclaredMethod("importBook");
m.setAccessible(true);//Abracadabra
Boolean result = (Boolean) m.invoke(yourInstance, "A Path"); // pass your epubBookPath parameter (in this example ...
6
Typically, main methods are static in Java, and in an object in Scala. This allows you to run them from the command line. Your code defines a class, not an object.
I'd suggest changing your Scala code to:
object Sam {
def main(args: Array[String]): Unit = {
println("Hello")
}
}
You can then call this from your Java main method as follows:
class ...
6
Does synchronized(obj) lock based on the object's memory location or its toHash() function?
Uh. Neither? It is based on the object's "reference" which is it's Java identity to the JVM. This is not it's memory address really because it is relocatable. It is not it's hash code (even in terms of Object.hashcode()) because that is not unique.
In terms ...
5
Yes and no. Making all fields final is not a guarantee in and of itself. If you'd like to get really in-depth with this there are a number of chapters in Effective Java by Joshua Bloch dealing with immutability and the considerations involved. Item 15 in Effective Java covers the bulk of it and references the other items in question.
He offers these five ...
5
String.split() splits a String based on a regular expression.
\b is a regex expression and denotes a word boundary i.e. start of line, end of line, a space, punctuation marks etc. It's passed as \\b because Java needs the \ escaped with another \.
When you split() with "" you're basically splitting on nothing and hence the input string gets broken into ...
5
What you are suggesting isn't easy. You need to download the OpenJDK and change it. It's a very large code base so I don't suggest you that.
Instead I suggest you add a runtime assertion check and unit test your code. If you use maven or ant to run your tests as part of your build, these error will be detect at build time, even if it is your tests, not ...
5
Maybe like that ?
if (FooUtils.isFarNotEmpty(foo)){
doSomething (foo.bar.boo.far);
}
and in FooUtils :
boolean isFarNotEmpty (Foo foo){
return foo != null &&
foo.bar != null &&
foo.bar.boo != null &&
foo.bar.boo.far != null;
}
5
If a method has side effects, you can check them in your JUnit test.
In your example, the method has no side effects, so there is nothing to test.
If you still want to test it, you can use reflection to do so, but I don't think it is good practice.
You can check JUnit FAQ related section
5
No
You can though have alternates, one could be via interface
interface IFunc {
void someFunction();
}
class Func1 implements IFunc
{
void someFunction(){..}
}
class Func2 implements IFunc
{
void someFunction(){..}
}
void getTheLateCall(IFunc func)
{
func.someFunction();
}
So caller would instantiate specific IFunc implementation and pass it ...
5
You can create abstract class that will be the base class for all your test cases. The cache should be initialized into this class and stored in its static member. Then all tests should use this cache.
Alternative solution is to implement your custom test runner that will manage the cache. Then you have to mark all test cases that need cache using ...
5
Because you are printing the array itself, which calls the toString method of a Java Array. If you check the implementation of this method, you will see it doesn't print the actual values, but instead it will print a unique hash for that object.
Object.toString()
Returns a string representation of the object. In general, the
toString method ...
5
It's because you instantiating a new Mechanics class inside of the RPG class. Then instantiating a new RPG class inside the Mechanics class.
The result is an infinite loop of instantiation.
For your specific example, I personally think the best way to fix the issue would be to pass the RPG instance directly into the hello world method.
class Mechanics {
...
5
This is called the Factory pattern. Check out the description here - Factory Design Pattern.
There are several advantages:
you can have multiple named factory methods to create different flavors of the object which can allow for overloading with the same set of parameter types
you can return a singleton if appropriate or maybe return one of a cached set ...
5
Enums are a good fit here. They allow you to encapsulate the functionality in one location rather than spreading it throughout your flow control.
public class Test {
public enum FizzBuzz {
Fizz {
@Override
String doIt(int n) {
return (n % 10) == 3 ? "3%10"
: (n / 10) == 3 ? "3/10"
: (n / 10) == 5 ? ...
Only top voted, non community-wiki answers of a minimum length are eligible

