Java at 30: How a language designed for a failed gadget became a global powerhouse
-
This post did not contain any content.
Java at 30: How a language designed for a failed gadget became a global powerhouse
It was never the sexiest language, but for decades Java has been a mainstay of modern technology, and it's going to be with us for years to come.
ZDNET (www.zdnet.com)
schrieb am 31. Mai 2025, 15:33 zuletzt editiert vonI keep Java installed for one thing and one thing only... modded Minecraft.
-
Gang of Four?
schrieb am 31. Mai 2025, 15:38 zuletzt editiert vonThey’re talking about this:
https://en.m.wikipedia.org/wiki/Design_Patterns -
They’re talking about this:
https://en.m.wikipedia.org/wiki/Design_Patternsschrieb am 31. Mai 2025, 15:43 zuletzt editiert von kirk781@discuss.tchncs.de 6. Feb. 2025, 22:25That makes more sense in context. Another Gang of Four (that I err, know more deeply for some reason) is(read:was) a political grouping in mid 70s in China.
-
Python is easy, but it can also be infuriating. Every time I use it, I'm reminded how much I loathe the use of whitespace to define blocks, and I really miss the straightforward type annotations of strong, non-dynamically typed languages.
schrieb am 31. Mai 2025, 15:59 zuletzt editiert vonuse bython, python with braces XD
-
This post did not contain any content.
Java at 30: How a language designed for a failed gadget became a global powerhouse
It was never the sexiest language, but for decades Java has been a mainstay of modern technology, and it's going to be with us for years to come.
ZDNET (www.zdnet.com)
schrieb am 31. Mai 2025, 16:06 zuletzt editiert vonUnlike other older languages, such as Cobol and Fortran -- which are still used, but almost always in legacy projects -- Java has constantly evolved to meet new demands while maintaining backward compatibility.
can't speak on the FORTRAN claim but with COBOL this couldn't be less true. last i checked the newest Enterprise COBOL LTS is newer than Java's
-
There's always Kotlin. Of course I never understood the desirability of a VM language in the first place, why not just compile for different architecture?
schrieb am 31. Mai 2025, 16:12 zuletzt editiert vonIt can help with standardization and some security benefits to run things in the JVM, part of the reason it's so popular in enterprise
-
Java was also my first introduction to programming as it was included in Computer Science in final year of school (at college, we did the trusty C).
I think they have replaced Java with Python now in schools because of the latter's popularity and also because many would argue, Python is slightly easier to learn than Java.
schrieb am 31. Mai 2025, 16:17 zuletzt editiert vonThe argument I agree with is that Python is the best language to learn if it's your only language, and Java is the best first language if you're going to learn others. The syntax from Java is shared across so many other languages and it forces you to learn about things like objects and types. You could make an argument for C or C++ but Java's handholding is more beginner friendly imo
-
This post did not contain any content.
Java at 30: How a language designed for a failed gadget became a global powerhouse
It was never the sexiest language, but for decades Java has been a mainstay of modern technology, and it's going to be with us for years to come.
ZDNET (www.zdnet.com)
schrieb am 31. Mai 2025, 16:38 zuletzt editiert vonIt's been interesting seeing the changes as they happened over time working with java pretty often for a good chunk of that time. The jvm and jit performance improvements, syntax changes and additional jep features added vs what was left out, tools for running and managing jvms, Sun & Oracle shooting themselves in the foot repeatedly, new jvm languages with scala, groovy, clojure, etc and their impact on java. I prefer other languages and tool chains for some cases, but java has been pretty good for building reliable, upgradable, extendable systems that get the job done & have a good large stable library.
-
That makes more sense in context. Another Gang of Four (that I err, know more deeply for some reason) is(read:was) a political grouping in mid 70s in China.
-
There's always Kotlin. Of course I never understood the desirability of a VM language in the first place, why not just compile for different architecture?
schrieb am 31. Mai 2025, 17:24 zuletzt editiert vonThere's also Groovy. A data execution pipeline program I use called NextFlow uses Groovy based scripts.
And compiling for different architectures can be very difficult. I've done a lot of work Power9 computers and it's not as simple as having the right compiler flags. Often the dependencies aren't built for your platform either so you have to go and compile those too. It can be quite a hassle.
-
A language I wish would die already, but there are still vendors that program in it, along with freaking Tomcat hosted applications. EduTech is still stuffed to the gills with it.
schrieb am 31. Mai 2025, 17:31 zuletzt editiert von greenknight23@lemmy.world 6. Feb. 2025, 22:27fucking tomcat and jboss...🤮
-
I'm still wondering what Java's niche is, it seems like it does everything, but nothing particularly well. I guess it found a home on Android, but I don't think that's because it's particularly well-suited for it.
schrieb am 31. Mai 2025, 17:52 zuletzt editiert vonThe point of Java is to be a language for 90% of programmers. The vast majority of software development is not sexy, doesn't require a PhD. Java was intended to be a commoditising language and in that it succeeded wildly.
-
Java was also my first introduction to programming as it was included in Computer Science in final year of school (at college, we did the trusty C).
I think they have replaced Java with Python now in schools because of the latter's popularity and also because many would argue, Python is slightly easier to learn than Java.
schrieb am 31. Mai 2025, 18:00 zuletzt editiert vonPython is interpreted where Java is compiled. They aren’t going to be able to be used in the same cases all the time.
-
Unlike other older languages, such as Cobol and Fortran -- which are still used, but almost always in legacy projects -- Java has constantly evolved to meet new demands while maintaining backward compatibility.
can't speak on the FORTRAN claim but with COBOL this couldn't be less true. last i checked the newest Enterprise COBOL LTS is newer than Java's
schrieb am 31. Mai 2025, 18:00 zuletzt editiert vonThe difference is people still write Java, regardless of whether it's a dated pos or not, so the use cases have evolved
Then there's the use of the JVM/JRE which have evolved even more due to Scala, Clojure & Kotlin
-
schrieb am 31. Mai 2025, 18:01 zuletzt editiert von
And Java is very much considered legacy in the vast majority of projects that use it.
-
It's a cycle all popular languages go through. First only experimental applications and super opinionated programmers use it. Then everyone wants to use it for everything. Then it finds a niche where it excels and settles.
I remember Java, C++, Python, and JavaScript going through those phases as well. Currently, everything is Rust.
schrieb am 31. Mai 2025, 18:05 zuletzt editiert vonJava is nothing like Rust. Java was always sold as a low skill programmer language, Rust has a steep learning curve. Java tooling has always sucked where Rust has excellent tooling pretty much since 1.0, Java is extremely verbose and needs a lot of tools to generate code to be productive at all, Rust is very expressive and most people write the code by hand or just use built-in language features. Java has a culture of "who care about that backtrace in my log as long as the app does what it is supposed to" while Rust has a culture that very much cares about correctness more than performance. Java was always driven by CEOs pushing it on people from the top while Rust is very much a language programmers try to push into their companies from the bottom.
Also, none of the languages you listed have a very particular niche that differs from what they were used early on apart from Java which is now mostly used on the server and used to also be used in GUI applications more.
-
The point of Java is to be a language for 90% of programmers. The vast majority of software development is not sexy, doesn't require a PhD. Java was intended to be a commoditising language and in that it succeeded wildly.
schrieb am 31. Mai 2025, 18:06 zuletzt editiert vonit succeeded in holding back the entire field of programming for a decade via that mindset by having people blindly apply stupid Java design patterns to everything.
-
The argument I agree with is that Python is the best language to learn if it's your only language, and Java is the best first language if you're going to learn others. The syntax from Java is shared across so many other languages and it forces you to learn about things like objects and types. You could make an argument for C or C++ but Java's handholding is more beginner friendly imo
schrieb am 31. Mai 2025, 18:08 zuletzt editiert vonPython isn't really strict enough to be a good learning language and Java has too much accidental complexity that literally matters in no other language.
-
There's always Kotlin. Of course I never understood the desirability of a VM language in the first place, why not just compile for different architecture?
schrieb am 31. Mai 2025, 18:16 zuletzt editiert von"Write once, run anywhere" is a pipe dream but Java came closer than anyone else by far.
-
Java is nothing like Rust. Java was always sold as a low skill programmer language, Rust has a steep learning curve. Java tooling has always sucked where Rust has excellent tooling pretty much since 1.0, Java is extremely verbose and needs a lot of tools to generate code to be productive at all, Rust is very expressive and most people write the code by hand or just use built-in language features. Java has a culture of "who care about that backtrace in my log as long as the app does what it is supposed to" while Rust has a culture that very much cares about correctness more than performance. Java was always driven by CEOs pushing it on people from the top while Rust is very much a language programmers try to push into their companies from the bottom.
Also, none of the languages you listed have a very particular niche that differs from what they were used early on apart from Java which is now mostly used on the server and used to also be used in GUI applications more.
schrieb am 31. Mai 2025, 18:18 zuletzt editiert vonYou hate Java, you love Rust, noted.
Also:
SAP,
Graphics,
Data science,
Web.
Good day.
-
Google loses app store antitrust appeal, must make sweeping changes to Play Store
Technology118 vor 3 Stundenvor etwa einem Tag1
-
One Law to Rule Them All: The Iron Law of Software Performance
Technology118 vor 20 Tagenvor 20 Tagen1
-
One Tech Tip: Get the most out of ChatGPT and other AI chatbots with better prompts
Technology118 vor 26 Tagenvor 27 Tagen1
-
Supreme Court to decide whether ISPs must disconnect users accused of piracy
Technology118 vor 29 Tagen30. Juni 2025, 20:561
-
-
-
-
A Researcher Figured Out How to Reveal Any Phone Number Linked to a Google Account
Technology 9. Juni 2025, 17:251