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
- Host: GitHub
- URL: https://github.com/alexius-huang/java-code-samples
- Owner: Alexius-Huang
- Created: 2020-06-16T16:02:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-23T07:36:09.000Z (almost 5 years ago)
- Last Synced: 2025-01-28T14:39:52.745Z (4 months ago)
- Language: Java
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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