Java - 101

Java Programming

Java Programming

Java Programming - Java - 101

Basic Java


Variable Datatypes


Topics

-Javas primitive data types.

-Declaration statements.

-Expression statements.

-All the types and how to convert them.

Complete the following video.

Conditionals Statements


Topics

-Relational operators.

-Logical operators.

-Conditionals.

-Ternary operator.

-Switch.

Complete the following video.

Loops


Topics

-While.

-Do .. While.

-For

Complete the following video.

Methods & Fields


Java Video Tutorial by covering methods, or functions in Java.

Topics

-Create methods.

-Static keyword.

-Local variables.

-Class variables.

-Variable Scope.

Complete the following video.

Exception handling


Java Video Tutorial to cover Java Exception handling.

Topics

-The difference between run time and checked exceptions.

-Use try, catch and finally.

Complete the following video.

Java Class


Java Video Tutorial How to create classes in Java.

Topics

-Fields.

-Private Keyword.

-Overload a method.

-Overload a constructor.

Complete the following video.

Make a video game


Java Video Tutorial How to create a make a video game

Topics

-Create a arrays.

-Create class fields.

-Create class methods.

-How to set a default value for an array, and a ton of logic.

Complete the following video.

Arrays in Depth


Java Video Tutorial How to create Arrays.

Topics

-Create arrays.

-Numerous ways to populate them.

-Tricks involving multidimensional arrays.

-The enhanced for loop.

-Array library methods and more.

Complete the following video.

Make a video game part 2

-Improve the game.

Complete the following video.

Java ArrayLists

Java Video Tutorial to introduce Java collection classes

Java ArrayLists make it easy to keep track of groups of objects. A Java ArrayList differs from a java array in that it automatically resizes itself when you add or remove values.

Complete the following video.

Java ArrayLists

Java Video Tutorial to introduce Java collection classes

Java ArrayLists make it easy to keep track of groups of objects. A Java ArrayList differs from a java array in that it automatically resizes itself when you add or remove values.

Complete the following video.

Java LinkedLists

Java Video Tutorial to cover Java Linked Lists.

The LinkedList class is a collection based on a linked list instead of an array like the ArrayList. They are good when you plan to add and delete items. They aren’t particularly efficient at providing access based off of index searches though.

Complete the following video.

String & Stringbuffer

Java Video Tutorial to cover most every method available for manipulating Strings and StringBuilders.

Complete the following video.

Advance Oriented Object Part 1

Java video tutorial to cover Polymorphism, Inheritance, Protected, Final, Instanceof and a bunch more

Complete the following video.

Advance Oriented Object Part 2

Java Video Tutorial to cover interfaces, abstract classes, abstract methods and more.

Complete the following video.

Java Object & Classes

Java Video Tutorial covering the Object and Class class

Complete the following video.

Thread

Java Video Tutorial to cover how to use Java threads.

Part 1

Complete the following video.

Part 2

Topics

-How to lock down methods.

-Synchronized.

-Thread pools.

-ScheduleAtFixedRate.

Complete the following video.

Regular Expression

Java Video Tutorial to cover Java Regular Expressions

Complete the following video.

Files

Java Video Tutorial to create and delete files and directories

Write to and read character streams from files.

PrintWriter, BufferedWriter, FileWriter, BufferedReader, FileReader, common file exceptions and much more

Complete the following video.

Write and Read characters

Complete the following video.

Reading and writing Java Binary Streams

Complete the following video.

Java & Databases

Java Video Tutorial I show you how to setup Java JDBC.

Connect to a MySQL database, query it and get the results of a query.

Complete the following video.