JEP-476 module import considered harmful

Cristian Mocanu cvmocanu at gmail.com
Tue Nov 19 15:47:56 UTC 2024


HI Brian,

> You seem very quick to dismiss opinions other than your own as “invalid”
and therefore not worthy of learning from.  I would suggest trying to
acquire the ability to look at your own (seemingly very strong) opinions
with the same degree of skepticism. Otherwise, you will find a very
difficult time convincing anyone to agree with you, which you will probably
find frustrating.

I dismiss opinions other than my own as invalid if I find them invalid, and
I have an argument that backs-up my opinion of why it's invalid.
I don't consider myself perfect. Every time we have a tech disagreement at
work, I organize a meeting with all devs and we discuss arguments (not
opinions or feelings). If someone comes with a valid argument I didn't
think about, I am willing to change - and have done so in the past.
And if most devs think differently from me, I will follow the team's
decision and move on, even if I don't like it. Time is better spent doing
something else than yelling at each other <<'tis so - no it ain't>>.

> As a reminder, amber-dev is not the feature design list; if you are
hoping to reopen the discussion, you have to come with arguments or data
that are new.
If this has been discussed already, and it was decided that introducing
confusion for the sake of typing less (or some non-practical benefit such
as "it's more abstract" or "it feels more compact") is acceptable, I will
be quiet from now on :)

Kind regards,
Cristian

On Tue, 19 Nov 2024 at 16:35, Brian Goetz <brian.goetz at oracle.com> wrote:

> I think you missed the point, though.  The point was not to reopen the
> debate; it was to help you realize that your opinion is just one of many,
> and the fact that you disagree doesn’t mean that the others are wrong (and
> that we should design the language around deterring their wrongness.).
>
> You seem very quick to dismiss opinions other than your own as “invalid”
> and therefore not worthy of learning from.  I would suggest trying to
> acquire the ability to look at your own (seemingly very strong) opinions
> with the same degree of skepticism. Otherwise, you will find a very
> difficult time convincing anyone to agree with you, which you will probably
> find frustrating.
>
> As a reminder, amber-dev is not the feature design list; if you are hoping
> to reopen the discussion, you have to come with arguments or data that are
> new.  I hope that the discussion so far has convinced you that all of this
> has been said before, and considered appropriately.  (And “they didn’t
> agree with me” the same as “this was not considered appropriately.”)
>
>
>
> On Nov 19, 2024, at 10:23 AM, Cristian Mocanu <cvmocanu at gmail.com> wrote:
>
> Hi Brian,
>
> >  - I like single imports because they feel more clear
> Invalid. How does knowing less feel clearer? Less code is not always
> easier to understand.
>
> >  - I like star imports because they express the dependencies more
> abstractly
> How is this a benefit worth having more confusing code? What is the exact
> benefit?
>
> >  - I like star imports because they make the code more compact
> Totally invalid!
> Junior developers don't understand that more compact code comes in 2 kinds:
> * the kind that makes the code easier to understand
> * the kind that makes the code harder to understand
> Having to write the types when declaring variables or fields makes the
> code less compact, but more readable at the same time.
>
> > Which is to say, opinions are all over the map
> Agreed, but not all opinions are valid :)
>
> Kind regards,
> Cristian
>
>
> On Tue, 19 Nov 2024 at 15:22, Brian Goetz <brian.goetz at oracle.com> wrote:
>
>> To illustrate that your view about star imports is merely one of many,
>> have a look at
>>
>>
>> https://stackoverflow.com/questions/147454/why-is-using-a-wild-card-with-a-java-import-statement-bad
>> <https://urldefense.com/v3/__https://stackoverflow.com/questions/147454/why-is-using-a-wild-card-with-a-java-import-statement-bad__;!!ACWV5N9M2RV99hQ!IROk1_ntj_34eXGUsBIXLP4QGJW9N1ZdcgFJ4EUMW9iUYE8tvRxXXVnZNI7eCwmu5U2hEIPsH7yoaYOKkQ$>
>>
>> Summarizing the answers to this q (considering only answers with more
>> than a few upvotes):
>>
>>  - Star imports are bad because they clutter the namespace with stuff you
>> don’t need, and might conflict
>>  - I like single imports because they feel more clear
>>  - Star imports are bad because there are conflicts like java.util.List
>> vs java.awt.List
>>  - I like star imports because they express the dependencies more
>> abstractly
>>  - Even if there are no conflicts now, there could be conflicts arising
>> later, which means star imports are less stable
>>  - I like star imports because they make the code more compact
>>
>> Which is to say, opinions are all over the map, and even among
>> star-import haters, the reasons are mostly not about readability, but about
>> conflict management and stability.
>>
>> On Nov 19, 2024, at 8:52 AM, Cristian Mocanu <cvmocanu at gmail.com> wrote:
>>
>> Hi Ron,
>>
>> Sorry, I incorrectly assumed that the problem is well known.
>>
>> You stated it almost correctly: "if a file has `import module a; import
>> module b;` and it uses the type `X`, you would need to search both `a` and
>> `b` to find the documentation for `X` when reading the code, rather than
>> just one of them (if we had, say, import X from module a`)".
>>
>> To make the problem clearer - if I see class X, and I'm not sure from
>> which module it comes from, I need to manually open the source code of all
>> imported modules, and check if they contain the class.
>> Or, much simpler, open the Java file in an IDE, and check there from what
>> module it comes.
>>
>> You're referring to documentation, but I would like to broaden the
>> problem a bit.
>> To lookup documentation, I would just use my IDE, which would "know"
>> which module X is coming from.
>>
>> The basic problem is that it's no longer obvious where X is coming from,
>> only by looking at the source code. For example, if you see `StringUtils`,
>> you can't tell whether it comes from Spring, or Apache Commons Lang, or
>> Micrometer, or Apache Commons Codec, or Logback Logstash Encoder, or some
>> other library - it can be any one of the module imports.
>>
>> Knowing that code is being read many time more often than written, I
>> don't think it makes sense to optimize writing an import by hand (which no
>> one does anyway - the IDE writes it for us) to the detriment of introducing
>> confusion when reading the code outside an IDE (like a GitHub PR review).
>>
>> Kind regards,
>> Cristian
>>
>> On Tue, 19 Nov 2024 at 14:39, Ron Pressler <ron.pressler at oracle.com>
>> wrote:
>>
>>> Hi.
>>>
>>> Merely stating that you you believe some feature to be harmful is not
>>> helpful feedback, because we already take it as a given that there are many
>>> features that some people strongly believe are very useful while others
>>> believe just as strongly to be harmful. Such a statement provides no
>>> actionable information.
>>>
>>> What could be helpful is trying to precisely articulate a problem you’ve
>>> run into. For example, if a file has `import module a; import module b;`
>>> and it uses the type `X`, you would need to search both `a` and `b` to find
>>> the documentation for `X` when reading the code, rather than just one of
>>> them (if we had, say, import X from module a`). Is that the problem you’re
>>> referring to? Why does it make reading the code so much more difficult for
>>> you?
>>>
>>> — Ron
>>>
>>> > On 19 Nov 2024, at 09:49, Cristian Mocanu <cvmocanu at gmail.com> wrote:
>>> >
>>> > Hello,
>>> >
>>> > My name is Cristia Mocanu, and I am a Java developer with almost 20
>>> years of experience.
>>> >
>>> > I was made aware of "JEP-476 module import" recently.
>>> >
>>> > I strongly recommend making sure this JEP is abandoned and never gets
>>> merged into Java.
>>> > The reason is that a module import shares the same problem with the
>>> star import: it makes the code much more difficult to understand without an
>>> IDE (e.g. when reviewing a PR on GitHub).
>>> > The problem with the star import is so bad, that many official code
>>> styles, and many teams I worked in, explicitly forbid star imports, making
>>> the build fail if one is found (i.e. by using Checkstyle's AvoidStarImport
>>> rule).
>>> >
>>> > The module import, just like the star import, will have the very bad
>>> effect of encouraging people to write code that is difficult to understand.
>>> > The advantage would be that the VIM guy can type less when writing a
>>> Java file. Don't get me wrong, I use VIM myself (even the IdeaVim plugin),
>>> but the last time I wrote an import manually was probably 15 years ago - in
>>> the real world, we type the class name, and IntelliJ or some other IDE
>>> writes the import for us.
>>> >
>>> > With fewer words: this JEP has nasty disadvantages, without providing
>>> any real world benefit.
>>> >
>>> > Kind regards,
>>> > Cristian
>>>
>>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/amber-dev/attachments/20241119/292e52a8/attachment-0001.htm>


More information about the amber-dev mailing list