Първи стъпки в Java
В този курс усвоявате синтаксиса на Java и принципите на ООП. Ще се запознаете и ще разработвате основни части от реални проекти.
По време на обучението ще се научите да:
- Разработвате конзолни приложения използвайки класове и обекти
- Създавате гъвкави модели с принципите на Обектно-Ориентирано програмиране
- Организирате данни чрез колекции и масиви
- Работите със стрингове – търсене, извличане, заместване, разделяне и др.
- Използвате контролни структури – условни оператори и цикли
Програма на "Първи стъпки в Java"
1. Introduction to Programming
- Introduction
- Java and Eclipse
- Primitive Data Types
- Operators in Java
2. Introduction to Classes and Objects
- Declaring a Class with a Method and Instantiating an Object of a Class
- Declaring a Method with a Parameter
- Instance Variables, set Methods and get Methods
- Initializing Objects with Constructors
3. Control Statements: Part 1
- if Single-Selection Statement
- if…else Double-Selection Statement
- while Repetition Statement
- Nested Control Statements
4. Control Statements: Part 2
- for Repetition Statement
- do…while Repetition Statement
- switch Multiple-Selection Statement
- break and continue Statements
5. Arrays
- Declaring and Creating Arrays
- Enhanced for Statement
- Passing Arrays to Methods
- Multidimensional Arrays
6. Object-Oriented Programming: Inheritance
- Superclasses and Subclasses
- protected Members
- Relationship between Superclasses and Subclasses
- Constructors in Subclasses
7. Object-Oriented Programming: Polymorphism
- Demonstrating Polymorphic Behavior
- Abstract Classes and Methods
8. Strings
- What is String?
- Manipulating Strings
- Comparing, Searching, Extracting Substrings, Splitting
- Other String Operations
- Replacing Substrings, Deleting Substrings, Changing Character Casing