Is there any difference between using

public ClassName extends some.package.Class implements another.package.Interface {}

and

import some.package.Class;
import another.package.Interface;

public ClassName extends Class implements Interface {}

when talking about performance, compatibility, etc..

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

There is no difference. The byte code is identical. All this happens at compile time, there is zero performance impact. You should make this decision based solely on your evaluation of readability.

link|improve this answer
feedback

It's a compile-time feature, so it's related to performance by no means. From compatibility standpoint, the only idea is that if you have 2 packages with classes named Entity and there's a module where you'd like to use both of them, having import ... means only one of these entities would be available using it's unqualified name. But it's more to maintenance than to compatibility.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.