abstract-class
There are 55 repositories under abstract-class topic.
SirSkaro/Pokedex
Pokedex is a robust Discord bot that mimics the iconic Pokedex from the Pokemon games and show. It's loaded with features to help players of all skill levels to learn and better enjoy Pokemon! The goal of Pokedex is to provide users with as much data about the Pokemon games as they desire conveniently and with minimal effort.
thuongtruong1009/java-oop-training
Traning about Java and Object-Oriented-Programming projects. Join me and contribute to it!
yymao/generic-catalog-reader
A common reader interface for accessing generic catalogs
denismurphy/modern-template-techniques
Modern Template Techniques
Jiyeon1104/STUDY_JAVA-BASIC
🎈Java 학습 관련 레파지토리입니다. 🎈
kkbughunter/Object-Oriented-Programming-Java
Engage in comprehensive hands-on learning of Object-Oriented Programming principles through Java in this dynamic engineering lab course. Navigate assignments, tests, applications, and mini-projects to master essential programming techniques and enhance your problem-solving skills.
MechaDragonX/CPPCollections
Implementations of some collections in C++. Contains basic versions of a single/double linked list, queue, and stack.
rajatt95/Java_OC
Programming | Java | IntelliJ | Data Types - Primitive, Reference | String and its operations | Control Statements - For, ForEach, While, Switch-Case| OOPS concepts - Encapsulation, Inheritance, Polymorphism | Abstraction using Interface and Abstract class | Access Modifiers | Exception Handling | File Operations - READ, WRITE
zoumson/Multi-ClientServer
A single Server Handles multiple clients request using multiple threading
alekszreyes/104
USC CSCI 104 Midterm Review
Faizi-alpha/Java-Core-Concepts
This Repository contains core concepts of Java.
ANNASBlackHat/BinarBatch8-Basic
Semua source code selama kelas di Binar Batch 8 - Basic Class
Dashminder-Singh/OOPS_with_cpp
Object oriented paradigm -> Real world programming
deepcloudlabs/dcl112-2023-oct-16
DCL-112: Object-Oriented Programming using C++20
leenajenniferedwin/COVID-19-INFORMATION-PORTAL
THE MAIN OBJECTIVE OF THIS PROJECT IS TO PROVIDE INFORMATION RELATED TO THE COVID-19 FOR VARIOUS STATES OF SOUTH INDIA AND ALSO THE SOP GUIDELINES(STANDARD OPERATING PROCEDURES)AND THE EMERGENCY CONTACT DETAILS LIKE (FOOD HELPLINE AND MEDICAL HELPLINE PROVIDED BY THE GOVT.OF KARNATAKA) SO THAT THE CITIZENS CAN TAKE PROPER MEASURES.BECAUSE WE ALL HAVE HEARD THIS SAYING ”PRECAUTION IS BETTER THAN CARE”
Ohkangrae/STUDY_JAVA-BASIC
🎈Java 학습 관련 레파지토리입니다. 🎈
PasinduAnthony/Westminster-Rental-Vehicle-Manager
This is a CLI program which lets the use to add , view , delete vehicles to the database. this program uses oop concepts.
Saxsori/CPP_Modules
42 CPP Piscine - Learning object oriented programming
yashpatel2911/Shopping-Cart
The shopping cart application is built using the concept of an abstract class of Java. The abstract class provides a wireframe structure for the new classes that are similar to the abstract class. HashMap and ArrayList are used to store the orders and display the orders of the customers.
Ziruliu/Heuristic-Search
Given pseudocode of different heuristic search algorithms, designed a graphical user interface, a 50 eight neighbor benchmark grids map, to implement and evaluate their performances.
amine-za/CPP_Introduction_Modules-1337
This repository provides a comprehensive introduction to C++. It covers fundamental concepts like memory management, polymorphism, inheritance, abstract classes and object-oriented programming in general, offering a solid foundation in C++ for beginners.
ayush52056/Application-Programming
Here, you'll find the culmination of our intensive 2-day coding journey, where we delved into various aspects of python programming. This repository hosts the code examples, projects, and exercises that we worked on during the bootcamp. What's Inside: Clear and concise code examples demonstrating each topic we covered.
HunorVadaszPerhat/java-classes
:books: Interface, Inner Class, Abstract Class, Final Class, Static variable, Access modifiers, Final variable, Nested Inner Class, Local Inner Class, Final method
HunorVadaszPerhat/java_lang_specs
:books: Java language basics
lai-jia-jing/cpp-module-04
Master advanced C++ concepts like polymorphism, deep copying, and abstract classes, with exercises on polymorphic behavior, memory management, and defining interfaces for derived classes.
Nour-Sadek/Budget-Manager
This project works as a "budget manager" for monthly purchases, where it allows the user to add their income and save the purchases that they have made
Svetoslavss/Inventory
Inventory task for Sirma academy, interfaces, abstract class, inheritance, encapsulation, files save in invetory.txt
AsrielDreemurrGM/Generics_Car_Collection
Java examples of generics, abstract classes, inheritance, and type-safe collections.
AsrielDreemurrGM/OOP_PersonTypes
Java project demonstrating inheritance with an abstract Person class and concrete subclasses for NaturalPerson and LegalEntity.
deepcloudlabs/dcl112-2024-aug-05
DCL-112: Object-Oriented Programming using C++20
deepcloudlabs/dcl112-2025-aug-18
DCL-112: Object-Oriented Programming using C++23
quynhchi1009/Prototype
Prototype is a creational design pattern that lets you copy existing objects without making your code dependent on their classes.
sancruz-dev/dotnet-mobile-data-abstraction
Handling data with abstract classes and poo
VaibhavMojidra/Java---Demo-Abstract-Class
Abstract classes are used in Java to create classes that cannot be instantiated, but instead serve as a blueprint or template for other classes to inherit from.
VaibhavMojidra/Kotlin---Demo-Abstract-Class
In Kotlin, an abstract class is a class that cannot be instantiated directly, but can be subclassed. It is used to define a common interface for a group of related classes, but without providing a complete implementation.