860
top 50 comments
sorted by: hot top controversial new old
[-] svcg 165 points 4 months ago

I also think Java is shit, but if you manage to get a NullPointerException while writing a hello world program, maybe anon is just not cut out for computers?

[-] navi@lemmy.tespia.org 85 points 4 months ago

I always loved that Java has a NullPointerException but doesn't have the concept of pointers in the language (only references).

[-] dukatos@lemm.ee 44 points 4 months ago

That is because they planed to add pointers and then gave up.

[-] RogueBanana@lemmy.zip 32 points 4 months ago

I can't tell if you are making a joke but I can believe it could happen if it's Java

[-] morrowind@lemmy.ml 18 points 4 months ago

I mean... they have them. And unsafe. You're just not supposed to use them

[-] starman@programming.dev 19 points 4 months ago

C# has NullReferenceException and it actually makes sense.

[-] unexposedhazard@discuss.tchncs.de 163 points 4 months ago

Java

Thats your first mistake bucko

[-] KoalaUnknown@lemmy.world 61 points 4 months ago

Am I weird for liking Java? I feel like it just makes so much more sense than other languages.

[-] Serinus@lemmy.world 52 points 4 months ago

C# is nearly the same, but much, much better.

  • It doesn't (usually) come with the Java culture 8 layers of abstraction. This isn't in the Java language. This isn't in OO. Yet nearly every Java programmer makes things way more complicated than it needs to be.
  • It's a prettier language. Similar syntax with less bullshit.
  • It's open source
  • It's still multiplatform. Modern dotnet / C# works on anything.
  • Both Visual Studio and Visual Studio code are great IDEs that blow Eclipse out of the water
  • It's one of the most common business languages.
  • It's going to be supported forever.

If I could restrict the world of programming to two languages, it'd be C# and Rust. C# for most things and Rust for a lower level language.

[-] PlusMinus@lemmy.world 14 points 4 months ago

Nah, C# suffers from a lot of the same shit Java does. Needing everything to be a class is just no longer a good design choice (if it ever was). AOT support is still lacking. I don't get, why it does not have typdefs. I think the solution / project structure is unnecessary and I could probably think of more stuff I dislike about C#. But imho, it still beats Java.

Golang is my choice over C# any time. I strongly prefer how interfaces are handled and I actually like the error handling.

[-] Serinus@lemmy.world 15 points 4 months ago

Needing everything to be a class

In 2015 they added scripting. If you're making a real project, you should absolutely use classes. (It's not that hard. Don't do the Java shit.) But you can absolutely write one off scripts just fine.

AOT support is still lacking.

Publishing your app as Native AOT produces an app that's self-contained and that has been ahead-of-time (AOT) compiled to native code. Source.

load more comments (1 replies)
load more comments (9 replies)
[-] alsimoneau@lemmy.ca 12 points 4 months ago

I'll take Python and Fortran, thank you very much

load more comments (2 replies)
load more comments (2 replies)
[-] sentient_loom@sh.itjust.works 26 points 4 months ago

I like how straight-forward the syntax is. And it also seems orderly to have everything be a class. There's a system to it.

I'm using C++ for a project now and I like it in a similar way, but there's more freedom (everything doesn't HAVE to be a class). So with C++ I'll never go back to Java (unless it's for a job).

[-] chunkystyles@sopuli.xyz 24 points 4 months ago

No. Every language has its haters. There's a reason Java is so widely used. If you like it, keep at it.

[-] tempest@lemmy.ca 22 points 4 months ago

Yes and the reason is because millions of lines of production code were written and it isn't worth rewriting them.

Plenty of languages around now that don't have 30 years of baggage and the specter of Oracle hanging over it.

Now a days many businesses choose Go.

load more comments (3 replies)
[-] dev_null@lemmy.ml 12 points 4 months ago* (last edited 4 months ago)

I thought I like Java until I tried Kotlin. It's everything I liked about Java, but with everything wrong with it fixed.

load more comments (3 replies)
[-] svcg 9 points 4 months ago

I am a certified Java hater, but you're allowed to like it. If simple and objected oriented is what you want, I can see the attraction, and it has a good and mature ecosystem.

load more comments (7 replies)
[-] babybus@sh.itjust.works 39 points 4 months ago

If it took anon 30 minutes to write hello world in java, programming is not for anon.

[-] pinkystew@reddthat.com 17 points 4 months ago

We bow to your wisdom, wise gatekeeper

load more comments (6 replies)
[-] AusatKeyboardPremi@lemmy.world 39 points 4 months ago

I might have agreed a decade or two ago, when I knew no better. But today, I find the tribalism surrounding programming languages comical.

I don’t particularly like Java, but I use it because it pays the bills. Similarly, I use C++ (which I prefer) when my work requires it.

[-] SorteKanin@feddit.dk 33 points 4 months ago

I don’t particularly like Java, but I use it because it pays the bills. Similarly, I use C++ (which I prefer) when my work requires it.

I mean, anon is not arguing against that. They're saying the language is shit regardless of how much it is used in business. I don't think they are entirely wrong.

load more comments (5 replies)
[-] Orbituary@lemmy.world 37 points 4 months ago

My old boss is one of the 3 initial creators of Java. He ran our department the same way this greentext reads.

He was also a paedo. You can figure out the rest if you dig.

[-] remi_pan@sh.itjust.works 16 points 4 months ago

Known for : the Java programming language, internet sex crime and the fantasy defense.

[-] Quadhammer@lemmy.world 10 points 4 months ago
[-] Orbituary@lemmy.world 15 points 4 months ago
load more comments (3 replies)
[-] _____@lemm.ee 36 points 4 months ago

C# masterrace and I'm tired of pretending it's not

load more comments (5 replies)
[-] Batman@lemmy.world 30 points 4 months ago

My inner mathematician respects Java. The first step in any problem is defining your universe

load more comments (1 replies)
[-] jrgn@lemmy.world 28 points 4 months ago

Not using Eclipse helps. Using Scala helps even more

load more comments (1 replies)
[-] lurklurk@lemmy.world 28 points 4 months ago

Hello World

30 minutes of boilerplate

writing imports

$ cat <<EOF > Hello.java
public class Hello {
  public static void main(String args[]) {
    System.out.println("Hello world!");
  }
}
EOF
$ java Hello.java
Hello world!

ok

[-] MooseTheDog@lemmy.world 26 points 4 months ago

Welcome to java, we have a couple unconventional ways of doing things, but overall I'm like every other mainstream oo language.

People: AHH! Scary!

Welcome to python. your knowledge of me wont help you elsewhere as my syntax is purposefully obtuse and unique. Forget about semicolons, one missed space and your code is as worthless as you after learning this language.

People: Hello based department

[-] Classy@sh.itjust.works 9 points 4 months ago

Oh my god I got fucked by a python script once because of a single space. It took forever to figure out what went wrong

load more comments (2 replies)
load more comments (3 replies)
[-] sugar_in_your_tea@sh.itjust.works 18 points 4 months ago* (last edited 4 months ago)

Python:

print("Hello world!")
[-] dch82@lemmy.zip 11 points 4 months ago* (last edited 4 months ago)

C:

#include <stdio.h>

int main() {
    printf("Hello World!");
    return(0);
}

EDIT: POSIX-compatible shell:

echo "Hello World!"
load more comments (4 replies)
load more comments (12 replies)
[-] Ab_intra@lemmy.world 28 points 4 months ago

Just imagine how it must have been to code Minecraft 🤣

[-] joyjoy@lemm.ee 32 points 4 months ago* (last edited 4 months ago)

They only had to deal with LWJGL. The corporate java world has to use Spring.

Edit: They also had to deal with all the fans saying they should've written it in C#.

load more comments (4 replies)
[-] WormFood@lemmy.world 21 points 4 months ago

object orientated programming is the wrong idiom for almost all problems, and even in the few cases where it makes sense, you have to be very careful or it'll hurt you

[-] 31337@sh.itjust.works 10 points 4 months ago

Idk. Maybe it's because I learned OOP first that it makes more sense to me; but OOP is a good way to break down complex problems and encapsulate them into easily understable modules. Languages like Java almost force everyone on the project to use similar paradigms and styles, so it's easier for everyone to understand the code base. Whenever I've worked on large non-OOP projects, it was a hard-to-maintain mess. I've never worked on projects such as the Linux kernel, and I'm hoping it's not an unmaintainable mess, so I'm pretty sure it's possible to not use OOP on large projects and still be maintainable. I am curious if they still use OOP concepts, even though they are not using strictly OOP.

I also like procedural python for quick small scripts. And although Rust isn't strictly OOP, it obviously borrows heavily from it. Haskell is neat, but I haven't used it enough to be proficient or develop good sense of application architecture.

I've done production work in C, but still used largely OOP concepts; and the code looks much different than code I've seen that was written before C++ was popular.

load more comments (1 replies)
load more comments (5 replies)
[-] mlg@lemmy.world 15 points 4 months ago

Forgot the JVM eating the entire machine's RAM for breakfast

[-] nova_ad_vitum@lemmy.ca 18 points 4 months ago

JVM is like a gas. It expands to fit it's container, however large that is.

[-] Zementid@feddit.nl 15 points 4 months ago

I really enjoyed the text.

From the perspective of a python programmer it all seems valid.

A Java-Dev would probably write the same about an embedded engineer.

load more comments (5 replies)
[-] sentient_loom@sh.itjust.works 14 points 4 months ago

You're not stuck with it Anon. You can use something different!

[-] Clbull@lemmy.world 14 points 4 months ago
[-] Gumus@lemmy.world 13 points 4 months ago

I'm sure that's Fireship, without clicking the link.

load more comments (3 replies)
load more comments (2 replies)
[-] yokonzo@lemmy.world 12 points 4 months ago

I started with java for school. The day I tried C for the first time I was flabbergasted, "what do you mean it doesn't matter which order I put things in?"

[-] yamanii@lemmy.world 10 points 4 months ago

I still think Java is good for teaching newbies precisely because it will throw an error quickly if they are doing it wrong.

load more comments (3 replies)
[-] Malfeasant@lemm.ee 9 points 4 months ago

Must be several years old - otherwise, javafx deserves quite a bit more ire.

load more comments
view more: next ›
this post was submitted on 13 Nov 2024
860 points (100.0% liked)

Greentext

5916 readers
1044 users here now

This is a place to share greentexts and witness the confounding life of Anon. If you're new to the Greentext community, think of it as a sort of zoo with Anon as the main attraction.

Be warned:

If you find yourself getting angry (or god forbid, agreeing) with something Anon has said, you might be doing it wrong.

founded 1 year ago
MODERATORS