|
-
Dec 7th, 2002, 01:38 AM
#1
Thread Starter
Addicted Member
I want
I want to learn Java. Where do I go to find tutorials, tools, ect…..
-
Dec 7th, 2002, 03:52 AM
#2
Addicted Member
You will need to download JDK (java development kit) from Sun Microsystems. You will also need Java Virtual machine
There are many editors about, I use edit plus:
http://www.editplus.com/download.html
Do a search for java + introduction +tutorials
from one newbie to another, Have fun and Good Luck!
P.s Once you have made a start and you are having problems then come back to this site where all the friendly people will try to help you, as they have done with me.
-
Dec 8th, 2002, 09:55 PM
#3
Hyperactive Member
A good place to start is the actual java tutorials on the sun site.
http://java.sun.com
-
Dec 11th, 2002, 01:42 AM
#4
Thread Starter
Addicted Member
Hay I have a question. How does the interpreter find the class?
-
Dec 11th, 2002, 11:56 AM
#5
There are some base search directories. The class loader searches for the classes in those directories and their subdirectories, according to a simple key. It takes the package of the class, say solitaire.cards. The class itself is called CardStack. Given that the CLASSPATH argument or environment variable are set it takes every path from there + the current path and tries
basepath\solitaire\cards\CardStack.class
for every path. If it doesn't find any file that fits it throws a ClassDefNotFoundError.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|