An open API service indexing awesome lists of open source software.

https://github.com/alexius-huang/java-code-samples

Notes and sample codes taken from Udemy course
https://github.com/alexius-huang/java-code-samples

Last synced: 3 months ago
JSON representation

Notes and sample codes taken from Udemy course

Awesome Lists containing this project

README

        

# Java Code Samples

Code samples and notes taken from Udemy course [Java Programming Masterclass for Software Developers](https://www.udemy.com/course/java-the-complete-java-developer-course).

## Table of Contents

- Hello World
- Primitive
- Operators
- Keywords and Expressions
- Methods
- Control Flow
- Parsing Values from String
- Classes
- Inheritance
- Array

## Memo
- 2020.06.16
- Completed `HelloWorld` sections
- Completed introduction to primitive types
- 2020.06.17
- Completed introduction to operators
- Completed Udemy course section: `First Steps`
- Completed keywords and expressions part
- 2020.06.18
- Completed method declaration, invocation and overloading
- Completed method code challenges
- 2020.06.19
- Completed Control Flows section including switch statement and looping statements
- 2020.06.21
- Completed value parsed from String type
- Completed user input parsing
- 2020.06.22
- Completed class basics: including instance initialization, member variables, methods, constructor functions
- Completed class inheritance
- 2020.06.23
- Completed class basic concept including composition, encapsulation and polymorphism
- Completed array basics