rfc:short-and-inner-classes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
rfc:short-and-inner-classes [2025/03/31 19:36] – remove old changes withinboredom | rfc:short-and-inner-classes [2025/04/02 17:39] (current) – add example withinboredom | ||
---|---|---|---|
Line 69: | Line 69: | ||
} | } | ||
} | } | ||
+ | |||
+ | new Message(' | ||
</ | </ | ||
Line 98: | Line 100: | ||
public function __construct(private string $name, private int $age) {} | public function __construct(private string $name, private int $age) {} | ||
} | } | ||
+ | |||
+ | new Person\Builder() | ||
+ | -> | ||
+ | -> | ||
+ | -> | ||
</ | </ | ||
Line 132: | Line 139: | ||
} | } | ||
} | } | ||
+ | |||
+ | Status:: | ||
</ | </ | ||
Line 164: | Line 173: | ||
} | } | ||
} | } | ||
+ | |||
+ | new FileReader()-> | ||
+ | </ | ||
+ | |||
+ | === Example: Factory Pattern === | ||
+ | |||
+ | <code php> | ||
+ | class Triangle extends Polygon { | ||
+ | public final class fromPoints extends Triangle { | ||
+ | public function __construct(Point $point1, Point $point2, Point $point3) { | ||
+ | // ... | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | public final class fromSides extends Triangle { | ||
+ | public function __construct(float $side1, float $side2, float $side3) { | ||
+ | // ... | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | new Triangle\fromPoints(new Point(0, 0), new Point(1, 0), new Point(0, 1)); | ||
</ | </ | ||
rfc/short-and-inner-classes.txt · Last modified: 2025/04/02 17:39 by withinboredom