RE: Why people think Java is bad and old language? 01-30-2017, 08:18 PM
#46
(01-30-2017, 04:23 PM)Mr.Kurd Wrote:(01-30-2017, 03:09 PM)Zenith Wrote: My friend is taking a class of"Computer programing in Java"
I told him already that it's unnecessarily complicated and an outdated program.
After like 2 days he agrees with me.
Ah And my questions is why Java is an outdated program and unnecessarily complicated?
Idk how I need to explain this but here you go
I'll take the "hello world" statement. First from c++, then Java.
C++
Code:
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
std::cin.get();
return 0;
}
Java:
Code:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
Idk how to say it other than. Java looks like it has so much that you just don't need.
Who Knows?