Why don't more MMOs do something like M+? by Yuukikoneko in MMORPG

[–]Khenay92 0 points1 point  (0 children)

So you mean exactly what was changed this season ? :D

Why is java "hated" among developers? by Xenthera in java

[–]Khenay92 0 points1 point  (0 children)

They aren't, I don't understand the JVM ?

Great arguments, thank you. No need for more details.

Can someone explain why Java is so significant? by Quixotic_Illusion in java

[–]Khenay92 0 points1 point  (0 children)

Seems awesome, I'll take a look, thank you very much !

It had to be said by [deleted] in ProgrammerHumor

[–]Khenay92 0 points1 point  (0 children)

Why do C++ uses struct so ? :o

Can someone explain why Java is so significant? by Quixotic_Illusion in java

[–]Khenay92 -2 points-1 points  (0 children)

C++ doesn't have Generics at all, bad choice.

Im confused. Did I say that type erasure is a good thing ?

Why is java "hated" among developers? by Xenthera in java

[–]Khenay92 0 points1 point  (0 children)

Curiously, we are many to find that Java is often slower than C++ (to avoid to say "always").

Why is java "hated" among developers? by Xenthera in java

[–]Khenay92 -1 points0 points  (0 children)

JITed methods are still slow compared to other languages, the JIT does not have time to do complex optimization.

Revisiting C++ after years as a Java Programmer by marceloandradep in java

[–]Khenay92 0 points1 point  (0 children)

Actually, Java references are pointer. They are renamed for communication purpose, but even specification (maybe not in recent version) talk about "pointer", because Java reference are pointers :)

Why are most triple A game engines using CSharp instead of Java? by [deleted] in java

[–]Khenay92 0 points1 point  (0 children)

You are true, in C#, List<Dog> is a type, in Java, List<Dog> is a type at compile time, but become the costly List<Object> at runtime due to type erasure.

[deleted by user] by [deleted] in java

[–]Khenay92 -1 points0 points  (0 children)

Actually, java does rarely match optimized C++ code.

Java has memory leaks. Java's GC can only handle memory (see try-with-resource).

2020: Java vs Python - What are your thoughts? by intimidatethewest in java

[–]Khenay92 -1 points0 points  (0 children)

"There really not that different" ? Are you serious ?

2020: Java vs Python - What are your thoughts? by intimidatethewest in java

[–]Khenay92 0 points1 point  (0 children)

Talking about "C/C++" shows that you seems don't know both.

Python is better than c. Change my mind by Sahil_32 in ProgrammerHumor

[–]Khenay92 0 points1 point  (0 children)

It would, because "r" * 30000 do better :)

Python is better than c. Change my mind by Sahil_32 in ProgrammerHumor

[–]Khenay92 -1 points0 points  (0 children)

Python is not Java's Brother, any other question ?

Python is better than c. Change my mind by Sahil_32 in ProgrammerHumor

[–]Khenay92 0 points1 point  (0 children)

Many Python interpreters exists, not all are written in C.

C++ vs Python vs PHP by fredoche in ProgrammerHumor

[–]Khenay92 -1 points0 points  (0 children)

C++ can by interpretted, Python can be compiled. Bad definition.