Support Forums
[TuT] Getting started with Java Programming! - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Java Programming (https://www.supportforums.net/forumdisplay.php?fid=22)
+---- Thread: [TuT] Getting started with Java Programming! (/showthread.php?tid=5633)

Pages: 1 2 3 4 5 6


RE: [TuT] Getting started with Java Programming! - AceInfinity - 09-26-2010

I find this very useful, this is worth a read for people wanting to start out with java. It's a language i'm currently learning too Smile many uses for java programming.


RE: [TuT] Getting started with Java Programming! - Untouch - 10-01-2010

(04-06-2010, 03:46 AM)BlackSpider Wrote: So now just write this code inside your Class(NewClass):
Code:
public static void Main(String[]args){
        System.out.println("Hello, world");
    }

I just started learning java but this part isn't completely accurate it should be writing like this (i think):
Code:
public class HelloWorld
{
        public static void Main(String []args)

      {
           System.out.println("Hello World");
      }

}// end class



RE: [TuT] Getting started with Java Programming! - Sιℓνєя - 10-04-2010

kool was lookin for one tho, thanks alot.


RE: [TuT] Getting started with Java Programming! - Carbon - 10-04-2010

I enjoyed reading this tutorial, quite useful with Minecraft Modding as everything is in java.


RE: [TuT] Getting started with Java Programming! - Jake - 10-04-2010

Meh, seems like it moves too fast and uses too many advanced descriptions for beginners e.g. "A Method provides information about, and access to, a single method on a class or interface. The reflected method may be a class method or an instance method. A Method permits widening conversions to occur when matching the actual parameters to invokewith the underlying method's formal parameters, but it throws an IllegalArgumentException if a narrowing conversion would occur. "

Otherwise, pretty good job, thanks for the guide.


RE: [TuT] Getting started with Java Programming! - AceInfinity - 10-04-2010

(10-04-2010, 03:18 PM)Jake Wrote: Meh, seems like it moves too fast and uses too many advanced descriptions for beginners e.g. "A Method provides information about, and access to, a single method on a class or interface. The reflected method may be a class method or an instance method. A Method permits widening conversions to occur when matching the actual parameters to invokewith the underlying method's formal parameters, but it throws an IllegalArgumentException if a narrowing conversion would occur. "

Otherwise, pretty good job, thanks for the guide.

Thats where, if I didn't know anything about javascript, that I would research it up on google. For coding, you should always have more than one source for a knowledge base. If you look things up yourself, chances are that you will learn more because you took the time to read up about it and figure it out for yourslef. Rather than have something just told to you.


RE: [TuT] Getting started with Java Programming! - Jake - 10-04-2010

Just in case you didn't know, java isnt JavaScript.

Anyway, I just think it's better to teach users by making comparisons of things they are already familiar with instead of using fancy jargon.


RE: [TuT] Getting started with Java Programming! - AceInfinity - 10-04-2010

It's better that way, but you also need to get used to the terminology..


RE: [TuT] Getting started with Java Programming! - Ḱø♭ε Ḃґƴαηт - 10-07-2010

Great tutorial and compilation, really helps me out to begin learning.


RE: [TuT] Getting started with Java Programming! - Hershey - 10-14-2010

I heard you can do some awesome stuff with java! Thanks for this! I will definitely take this into action! Smile