Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Java Programming Basics
Rating: 4.5 out of 5(10,939 ratings)
174,345 students

Java Programming Basics

Learn to program! Let's walk through some simple examples and I'll explain everything along the way.
Created byCharles Mulic
Last updated 10/2015
English

What you'll learn

  • Create Java programs from scratch
  • Break a large problem into smaller pieces that you can implement
  • Debug a program and understand how code gets executed

Course content

3 sections17 lectures2h 48m total length
  • Installing the JDK and Eclipse3:23

    This tutorial guides you through everything you need to begin developing Java programs.

    It is assumed that you can follow the JDK install wizard.

    You can download the JDK here: http://www.oracle.com/technetwork/jav...

    You can download Eclipse here: http://www.eclipse.org/downloads/

  • Hello World and Eclipse shortcuts5:31

    In this tutorial we create the standard "Hello, world!" application using Java.

    I introduce two very helpful shortcuts that the Eclipse IDE provides:

    Automatically generate a main method: type 'main' and then press ctrl + space bar
    Automatically generate a System.out.println(): type 'syso' and then press ctrl + space bar

    Comments are also introduced to remind us what the main method and System.out.println do, and the shortcuts we used to generate them.

Requirements

  • You don't need anything! Well, maybe a computer. At the start of the course, we'll walk through getting set up with the JDK and Eclipse, but you're welcome to use the IDE of your choice (or none).

Description

Learn about programming through a series of short, concise examples with line by line explanations covering everything from getting up and running to object oriented programming, data structures, and various tips and tricks to help you along your way.

Section 1 will get you up and running with everything you'll need to write and run Java programs.

Section 2 will introduce fundamental programming concepts such as variables, methods, and control structures that will put you well on your way to writing your own applications.

Section 3 dives a bit deeper as we learn about object oriented programming. You'll learn how to write code that can be reused easily, as well as gain some insight into technical details about how programs actually run on hardware.

Who this course is for:

  • No prior knowledge is assumed. This course is aimed towards people beginning programming, or those looking for clarity on certain subjects