All Projects → prmr → Softwaredesign

prmr / Softwaredesign

Introduction to Software Design with Java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Softwaredesign

design-patterns-for-humans-cn
Design patterns for humans 中文版 - 对设计模式超简单的解释
Stars: ✭ 2,432 (+2238.46%)
Mutual labels:  design, design-pattern
Rest Api Design Guide
NBB's REST-ish API Design Guide
Stars: ✭ 643 (+518.27%)
Mutual labels:  design-pattern, design
Vaquarkhan
Stars: ✭ 1,199 (+1052.88%)
Mutual labels:  design-pattern, design
Visual Center
Proposed tool to better align logos in the center of a container.
Stars: ✭ 1,338 (+1186.54%)
Mutual labels:  design
Awesome Gradient
😎 A curated list of awesome Gradient frameworks, libraries and software and resources
Stars: ✭ 98 (-5.77%)
Mutual labels:  design
Flat Dialog Android
📱Android Library to implement beautiful dialogs in android apps easily
Stars: ✭ 102 (-1.92%)
Mutual labels:  design
100daysofcode With Python Course
Course materials and handouts for #100DaysOfCode in Python course
Stars: ✭ 1,391 (+1237.5%)
Mutual labels:  course
Guide
A free, open-source community resource for designers, developers and others working on non-custodial bitcoin products.
Stars: ✭ 94 (-9.62%)
Mutual labels:  design
Class101 Ui
💅A React-based UI Component Library.
Stars: ✭ 102 (-1.92%)
Mutual labels:  design
Teensy Eurorack
Eurorack shield for teensy 4.1 with 14 in / 16 out analog channels
Stars: ✭ 99 (-4.81%)
Mutual labels:  design
Material Design For Bootstrap
Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
Stars: ✭ 9,463 (+8999.04%)
Mutual labels:  design
Python For Absolute Beginners Course
Code samples and other handouts for our course.
Stars: ✭ 1,352 (+1200%)
Mutual labels:  course
Nlp Thu
NLP Course Material & QA
Stars: ✭ 101 (-2.88%)
Mutual labels:  course
Pris
A language for designing slides
Stars: ✭ 97 (-6.73%)
Mutual labels:  design
Pagebot
Scripted page layout framework for Python.
Stars: ✭ 103 (-0.96%)
Mutual labels:  design
Designpatterns
Project : Design Patterns Examples in C#
Stars: ✭ 1,337 (+1185.58%)
Mutual labels:  design-pattern
Tachyons Verbose
Functional CSS for humans. Verbose edition.
Stars: ✭ 102 (-1.92%)
Mutual labels:  design
Learngo
1000+ Hand-Crafted Go Examples, Exercises, and Quizzes
Stars: ✭ 11,847 (+11291.35%)
Mutual labels:  course
Milligram
A minimalist CSS framework.
Stars: ✭ 9,568 (+9100%)
Mutual labels:  design
Processing Svg Experiments
Some Processing example projects to export SVGs
Stars: ✭ 101 (-2.88%)
Mutual labels:  design

Introduction to Software Design with Java


This version of the text is no longer maintained: The material in this repository is an early draft of a manuscript that eventually matured into a finished textbook: Introduction to Software Design with Java published on July 17 2019. It is also available as an ebook on SpringerLink. This site will remain available indefinitely for use as initially licensed. The code and related resources for the book are publicly available on this GitHub repository.


This textbook provides an in-depth introduction to software design, with a focus on object-oriented design, and using the Java programming language. Compared with other resources for learning software design, this material is intended to have the following features:

  • Concrete: The concepts presented are worked down to a level where they are directly applied in source code. For this reason, a minimum level of Java programming proficiency is necessary. It is important to note that the Java programming language is the learning tool that allows me to illustrate and discuss various design concepts: it is not the subject being taught. Learning software design in-depth requires the use of a programming language, but the knowledge gained is expected translate easily to other languages. This being said, we might as well choose a mature, free, and well-supported language. Translation of the material to use Plankalkül is left as an exercise.
  • Narrative: This text follows a narrative style that links design problems, concepts, and solutions into a cohesive package. This is in contrast to reference material such as design pattern catalogs or API documentation.
  • Foundational: To the extent possible, this material attempts to be independent from any specific technological solution, and in particular software application frameworks. Frameworks are invaluable for realistic development, but their continual evolution means that idiosyncratic knowledge required to use them has a short expectation of usefulness. Rather, this text focuses on general principles and techniques that underlie most frameworks.

Module 0 - Preparation

How does one approach a software development project? Start hacking and hope for the best? Probably not. This would just be inviting disaster. In this pseudo-module, I will present an overview of the important steps we need to take to prepare to develop quality software, from understanding the problem to mapping out a development process to choosing and setting up our tools to sketching an application.

Module Notes

Module 1 - Encapsulation

One of the major motivation for good design is to keep control of the complexity of a system. An idea that is paramount to simplifying the design of software is encapsulation. Ideally, classes serve to support functionality, but also to isolate distinct computations. This module will cover the most important concepts and techniques necessary to design well-encapsulated classes.

Module Notes

Module 2 - Types and Polymorphism

One of the main mechanisms at our disposal for designing object-oriented applications is polymorphism, which in the case of Java and similar languages is heavily tied to the notion of a type system. In this module I will do a brief review of the foundations of polymorphism, introduce the idea of interface programming, and present common low-level design problems that are easily solved with polymorphism.

Module Notes

Module 3 - Object State

The most difficult thing to reason about when looking at a program is state changes. What operations can have a side-effect, on which path can data flow, what impacts what? Is this module, I will clarify what object state is and how we can manage to keep control over its state in a principled way so we don't let the genie out of the bottle every time we instantiate an object.

Module Notes

Module 4 - Unit Testing

How can we have confidence that our code is working properly? Every time we write or change a line of code, we could be introducing a lethal bug. Unit testing is a practice wherein we automatically execute our code to check that it does what we think it should. With unit testing, we can build a possibly large collection of tests that can quickly be run, for instance every time we change the code, to make sure we didn't break anything that used to work. In this module, I will introduce mechanisms that facilitate unit testing (reflection and type annotations) and provide you with basic techniques for designing unit tests and evaluating their quality.

Module Notes

Module 5 - Composition

Large programs are typically assembled from smaller parts. In object-oriented programming this is done through two main mechanism: composition and inheritance. Composition simply means that one object holds a reference to another object and delegates some tasks to it. Although this sounds simple enough, unprincipled composition can lead to a terrible mess of spaghetti code. In this module I will give a quick refresher on the mechanism of polymorphism and how it can be used to elegantly compose objects together by following some well-known design patterns. Note that the second way of assembling systems is through inheritance, which is more complex and will be covered in Module 7.

Module Notes

Module 6 - Inversion of Control

The idea of inversion of control is one of the most powerful intellectual tools in a software designer tool-box. It allows us to build incredibly sophisticated applications while keeping the overall design complexity down to a manageable level. The Observer pattern is extremely common in software development, and it's realized by most GUI toolkits on most software development platforms, from desktop to web to mobile applications. This module is dedicated to the principle of inversion of control (IoC) and its realization in the Observer pattern, also called the Model-View Controller (MVC) pattern.

Module Notes

Module 7 - Inheritance

Inheritance is a programming language-supported mechanism that allows us to assemble state and computation from different classes into a single object. It is a powerful feature that offers a natural solution to many design problems related to code extensibility and dynamic configuration. At the same time, it is a complex mechanism that can all too easily be misused. In this module, I will offer a review of inheritance and present the major design rules and patterns involving it.

Module Notes

Module 8 - Design Patterns

This module will explore design solutions that incorporate design patterns an inheritance and introduce the Visitor design pattern.

Module Notes

Module 9 - Concurrency

Concurrent programming is a paradigm that allows developers to write code that can execute in parallel (on multi-core systems) or with the illusion of parallelism (on single-core ones). Concurrent programming is very, very challenging and is ideally only used in support of well-defined and well-understood design problems, such as performing background operations or displaying animations. In fact, many typical concurrent programming problems already have a framework-based solution that hides the use of concurrency primitives. In this module, I will present the foundations of object-oriented concurrent programming and a few examples of the use of concurrency in practice.

Module Notes

Module 10 - Serialization

Sometimes, the data in a running program needs to be transferred out of the program, for example to be stored in a file or transmitted over a network. In this module, I will cover the main techniques for serializing object graphs using a variety of frameworks including Java's binary serialization and JavaBeans frameworks and JSON serialization APIs. This module will also feature an introduction to the agile development practice called refactoring.

Module Notes

Acknowledgment

I have taught software design for close to a decade using Cay Hostmanns' book "Object-Oriented Design and Pattern, 2nd edition" (Wiley 2006). Although I have progressively developed my own way to introduce and present the material, Horstmann's text was a crucial influence in this progression. The part of module 4 on test case selection and structural testing was adapted from a lecture originally created by Andreas Zeller based on material from the book "Software Testing and Analysis: Process, Principles, and Techniques", by Pezze & Young (Wiley, 2008). By now the content of this repository has been scrutinized by hundreds of bright eyes and sharp minds (in roughly 2 to 1 proportions). I am grateful to those who have taken the time to report errors and suggest improvement: Nima Adibpour, Nicholas Lee, Vasu Nadella, Ashley Stendel, Allan Wang, dreaming-dog

License

Creative Commons License

Unless otherwise noted, the content of this repository is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.

Copyright Martin P. Robillard 2017

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].