Skip to content

Commit

Permalink
#590 Kramdown fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iluwatar committed Aug 12, 2017
1 parent 2d750dc commit fba30e5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion factory-method/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ decide which class to instantiate. Factory Method lets a class defer
instantiation to subclasses.

## Explanation

Real world example

> Blacksmith manufactures weapons. Elves require Elvish weapons and orcs require Orcish weapons. Depending on the customer at hand the right type of blacksmith is summoned.
In plain words

> It provides a way to delegate the instantiation logic to child classes.
Wikipedia says

> In class-based programming, the factory method pattern is a creational pattern that uses factory methods to deal with the problem of creating objects without having to specify the exact class of the object that will be created. This is done by creating objects by calling a factory method—either specified in an interface and implemented by child classes, or implemented in a base class and optionally overridden by derived classes—rather than by calling a constructor.
**Programmatic Example**
Expand All @@ -53,6 +55,7 @@ public class OrcBlacksmith implements Blacksmith {
```

Now as the customers come the correct type of blacksmith is summoned and requested weapons are manufactured

```
Blacksmith blacksmith = new ElfBlacksmith();
blacksmith.manufactureWeapon(WeaponType.SPEAR);
Expand Down
7 changes: 7 additions & 0 deletions singleton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,31 @@ access to it.

## Explanation
Real world example

> There can only be one ivory tower where the wizards study their magic. The same enchanted ivory tower is always used by the wizards. Ivory tower here is singleton.
In plain words

> Ensures that only one object of a particular class is ever created.
Wikipedia says

> In software engineering, the singleton pattern is a software design pattern that restricts the instantiation of a class to one object. This is useful when exactly one object is needed to coordinate actions across the system.
**Programmatic Example**

Joshua Bloch, Effective Java 2nd Edition p.18

> A single-element enum type is the best way to implement a singleton
```
public enum EnumIvoryTower {
INSTANCE;
}
```

Then in order to use

```
EnumIvoryTower enumIvoryTower1 = EnumIvoryTower.INSTANCE;
EnumIvoryTower enumIvoryTower2 = EnumIvoryTower.INSTANCE;
Expand Down

0 comments on commit fba30e5

Please sign in to comment.