Exploring Java's Ability

Is the Java programming language complete language or is it useful only for writing programs for the Web?
[112 byte] By [JavaTeama] at [2007-10-3 4:18:51]
# 1
I have no idea what a "complete" language is. But, you can do many things in Java that have nothing to do with the web (don't run in a browser).
doremifasollatidoa at 2007-7-14 22:20:35 > top of Java-index,Java Essentials,Java Programming...
# 2

I don't know what you mean by "complete," but Java is used for much more than "programs for the web."

The one thing it can't do is directly access hardware. For that you need to use a language like C or C++, but you can provide JNI wrappers to those functions--the result is just not platform-independent.

jverda at 2007-7-14 22:20:35 > top of Java-index,Java Essentials,Java Programming...
# 3
You can't access memory using pointers, but you can do "anything" else. Is there something specific you want to be able to do? Maybe you should write a list... :-)
anestikasa at 2007-7-14 22:20:35 > top of Java-index,Java Essentials,Java Programming...