Results 1 to 5 of 5
Thread: Hello World!
- 09-17-2011, 10:26 PM #1
Game Programmer
- Join Date
- Sep 2011
- Location
- In front of my computer
- Posts
- 4
- Rep Power
- 0
Hello World!
Hello World!
I am Nighthawk0973 and just joined these forums, an hour later (before I had even posted) I realized I hand't even made my intro! Silly me :D
Anyways I've been a Java programmer for 2 years now. My favorite editor is Eclipse and the thing I hate the most about Java is that there is no way to update automatically (when it comes to your JDK version) and the fact that you have to use the public void paint stuff instead of
For me commands such as those would make game dev SO easy. XDJava Code:Image player = new imageFromFile("C:/File.png"); DrawImage(player, xvariable, yvariable); Program.Cls();
I'm what I would consider 'Merging to Intermediate' at Java. I still have a lot to learn and am working on my very first game, but I am not horrible and can make good GUI programs etc.)
Anyways that's my Hello World Thread, I hope to see you guys around!
- 09-17-2011, 10:27 PM #2
Member
- Join Date
- Sep 2011
- Location
- Washington DC
- Posts
- 51
- Rep Power
- 0
Re: Hello World!
Welcome!! I'm pretty new to java and these forums. If you have any questions let me know. :)
- 09-17-2011, 10:52 PM #3
Game Programmer
- Join Date
- Sep 2011
- Location
- In front of my computer
- Posts
- 4
- Rep Power
- 0
Re: Hello World!
Yeah well, I'm more experienced with Java so I don't think I'll need to be asking you questions. Besides why should I pesture you about my troubles when I have google? XD That's kindof what I use this forum for (or will use it for)
Example of code I'm assuming you don't understand but I understand just fine.
That's it! Basically it creates, a pointless GUI.Java Code:import javax.swing.JFrame; public class PointLessGUI extends JFrame{ public static void main(String[] args){ PointLessGUI PointLessGUI = new PointLessGUI(); //Get it, "New Pointless GUI!" XD } public PointLessGUI(){ setTitle("You guessed it, pointless GUI!"); setSize(800, 600); setLocation(110, 50); setResizable(false); setDefaultCloseOperation(EXIT_ON_CLOSE); setVisible(true); //haha, can't forget this } }
-
Re: Hello World!
- 09-18-2011, 03:29 AM #5
- Join Date
- Jan 2011
- Location
- Richmond, Virginia
- Posts
- 3,069
- Blog Entries
- 3
- Rep Power
- 7
Re: Hello World!
Welcome :)
Similar Threads
-
Hello World, new!!!
By omarovs in forum IntroductionsReplies: 1Last Post: 08-06-2011, 09:46 AM -
Hello World in AOP
By lheebhee in forum EclipseReplies: 0Last Post: 11-18-2009, 11:30 AM -
Hello World
By MadeinFinland in forum IntroductionsReplies: 0Last Post: 02-19-2009, 06:34 AM -
hello world
By wayne.seymour in forum IntroductionsReplies: 2Last Post: 02-11-2009, 01:19 PM -
Hello, World!
By Steve11235 in forum IntroductionsReplies: 0Last Post: 12-22-2008, 05:00 PM


2Likes
LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks