Jump to content

Eclipse.org


Browning

Recommended Posts

Here's where I went:

ftp://ftp.cise.ufl.edu/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.0.1-200409161125/

 

Once there download the

eclipse-platform-SDK-3.0.1-win32.zip

 

You can probably take it from there.

 

One note about the Eclipse project - they are making new builds continually. The builds, or "drops", with an R in the front are the stable, "end user release" releases. You want those - the other ones are more raw, though newer, haven't been thru full testing.

Link to comment
Share on other sites

My g/f took meto her Library at OUZ, I came back with 3 books lol. Beginning Programming for Dummies, Database Programming, C++ for Real Programmers.

 

? for you. Id like to go to school for this, but have no idea what its called. Can you tell me, and is it 2 or 4 years,do you know?

Link to comment
Share on other sites

On eclipse I am making the Hello World, using the tutorial. I came to a spot that says

 

In the public static void main, method, add the following, System.out.ptintln("HelloWorld!") and save your changes, then click continue.

 

What/Where is the public static void main?

Link to comment
Share on other sites

If you are programming hello world in java it would look something like this

 

class HelloWorld {

public static void main( String[] args ) {

System.out.println( "Hello World!" );

}

}

 

I probabally wouldn't use the eclipse tutorial to try and learn java but thats just me.

Link to comment
Share on other sites

You have to create a new class in your project and then type that code into the editor. It won't already be there, you have to type it in.

 

+1 on not using the eclipse tutorial to learn java. Go to www.javaranch.com. A lot of good info on there to help you get started learning about it.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...