Tutorials Navigation
Java - Your first program
Tutorial Name: Java - Your first program
Category: PC Tutorials
Submitted By: Kyle93
Date Added:
Comments: 1
Views: 2,207
Related Forum: PC Building Forum
Share:
Ok, well we will need a few things for this:
Java JDK - [ Register or Signin to view external links. ]
BlueJ - [ Register or Signin to view external links. ]
A Brain
Intalling
1) Intall JDK
2) Intall BlueJ - Make sure to pick the JDK
Programming
1) After installing, run BlueJ
2) New
[ Register or Signin to view external links. ]
3) Double click "Main"
Delete all thats there and copy this in
class Main
{
public static void main( String args[] )
{
System.out.println("Hello World");
}
}
Now press "Compile" (Top left)
4) Now we run it
So, right click main and press "void Main"
[ Register or Signin to view external links. ]
You will get this
[ Register or Signin to view external links. ]
You have now created and run your first program.
Ok, a little about the code
class Main - This line is saying this is the class called "Main" this is used when you create programs with more classes.
{ - This is how we say whats in this section. We need to put these every time we doing somthing like this. For example an IF fig1
public static void main( String args[] ) - This is part of Java, the "public static" says that we are using a method that everyone can use and the "void" means that we wont return a value if this method is called.
{
System.out.println("Hello World"); - This is a pre made method to print out a value
}
}
fig1
if( x > y )
{
somecode
}
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,691)
- 02. How to: Matrix Numbers | Batch File(1,960)
- 03. How to Password Protect Files on Windows(870)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,906)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,267)
- 06. How to embed an image on TheTechGame(3,146)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(13,096)
- 08. Host bot lobbies! Full Tutorial!(11,643)
- 09. Unban yourself [Plutonium BO2](14,322)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,416)
- 11. Best Crosshair Settings for Valorant(6,559)
- 12. Othercide The Surgeon Boss Guide(2,573)
- 13. Othercide Remembrances Unlock Guide(4,522)
- 14. Othercide Beginners Tips and Tricks(2,740)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,892)
"Java - Your first program" :: Login/Create an Account :: 1 comment