How to Program with Java Podcast show

How to Program with Java Podcast

Summary: Learn how to program using the Java programming language. This podcast will teach you step by step how to use the Java programming language to create your own applications or web applications! These Java tutorials are presented in plain English and explain all of the important Java programming concepts needed to excel in the field of software.

Join Now to Subscribe to this Podcast
  • Visit Website
  • RSS
  • Artist: Trevor Page: Java Guru | Programmer | Teacher
  • Copyright: © Crafty Codr Inc. 2024

Podcasts:

 Custom Sorting Algorithms in Java | File Type: audio/mpeg | Duration: 42:47

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... Trevor Page teaches you exactly how you would go about implementing a custom sorting algorithm for your Collections or Arrays.  By default, Java has the methods "Collections.sort()" and "Arrays.sort()" to sort your Lists/Arrays for you... but what happens when you want to change the way these methods sort?  Find out in this podcast!

 Constructors in Java | File Type: audio/mpeg | Duration: 25:04

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... Constructors are used to initialize Objects in Java.  These are not mandatory to use, but anytime you've got an Object that maintains state, you should always think about properly initializing your Object.  The constructor isn't limited to just initializing though, so have a listen and find out what you can do!

 Packages in Java | File Type: audio/mpeg | Duration: 28:34

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... Did you know Java allows you to organize all of your files in folders for a "neat" programming environment?  Well it does, so learn all about Java packages in this week's episode of the How to Program with Java podcast.  

 Regular Expressions in Java | File Type: audio/mpeg | Duration: 39:27

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this week's episode I will cover the topic of regular expressions in Java.  This topic came as a request from a listener, so I was thrilled to record it for them.   You'll learn everything you need to know to get started with regular expressions, and I even leave you with an assignment for you to do at home!  So let's get to it!  Be sure to check out the show notes at http://howtoprogramwithjava.com/session16

 Collections in Java | File Type: audio/mpeg | Duration: 44:04

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp   In this episode of the How to Program with Java podcast, I will be covering the topic of Collections.  What is a Collection in Java?  Some popular examples are: List, Set and Map.  These are all interfaces, so what are the most common implementations of these interfaces?  You'll find out and much more!

 Finally and StackTrace in Java | File Type: audio/mpeg | Duration: 45:06

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp   In this week's episode of the How to Program with Java Podcast, we talk about the last important piece of Java Exceptions, and that is the "finally" block.  Also, I'll touch on what a Stack is and how it relates to the StackTrace and to Exceptions!  Exciting stuff people!

 Exceptions in Java | File Type: audio/mpeg | Duration: 33:40

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode You will learn what the Java Exception handling framework is and how it works with a few example scenarios.  You'll understand why you would use something called a try/catch block of code and how it is used. Show notes via howtoprogramwithjava.com/session13

 String Type in Java | File Type: audio/mpeg | Duration: 33:39

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode Learn all about the Java String variable type.  The String is a widely used and fairly complex variable type, but we will cover everything you need to really understand what it's all about!

 Inheritance in Java | File Type: audio/mpeg | Duration: 25:57

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode You will learn the ins and outs of Inheritance.  This concept is one of the three key concepts of object oriented programming, so it's an important one to understand.

 Objects and Static Keyword in Java | File Type: audio/mpeg | Duration: 31:31

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp   In this episode... We will talk in depth about the Java Object and what it's so important to the Java programming language.  We will also touch on the static keyword, as it pertains to the Java Objects with respect to the Class blueprint.

 Primitives in Java | File Type: audio/mpeg | Duration: 26:57

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp   In this episode of the How to Program with Java podcast, we'll learn about Primitive data types and why they are used in Java.  We'll talk about the difference between the primitive types and their Object Wrapper counterparts.  We will cover when to use one over another and some important things to understand about Primitives!

 Arrays in Java | File Type: audio/mpeg | Duration: 33:15

Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp   In this episode We will learn about Arrays in Java, why they are useful and what important things we should know about Arrays before we start to use them.

 Methods in Java | File Type: audio/mpeg | Duration: 23:57

  Interested in starting your coding career? I'm now accepting students into an immersive programming Bootcamp where I guarantee you a job offer upon graduation. It is a 6 month, part-time, online Bootcamp that teaches you everything you need to know to get a job as a Java developer in the real-world. You can learn more via https://www.coderscampus.com/bootcamp In this episode... I will teach you everything you'll need to get off the ground with what a method is an how they are used in Java.

 Java Hello World | File Type: audio/mpeg | Duration: 26:33

Learn how to program using the Java programming language. This podcast will teach you step by step how to use the Java programming language to create your own applications or web applications!

 Syntax and Tools in Java | File Type: audio/mpeg | Duration: 25:47

Learn how to program using the Java programming language. This podcast will teach you step by step how to use the Java programming language to create your own applications or web applications!

Comments

Login or signup comment.