The Mikado Method by Ola Ellnestam Daniel Brolund
Author:Ola Ellnestam Daniel Brolund
Language: eng
Format: epub
Publisher: Manning Publications
Problem
Another common scenario when restructuring code is that you find a class that implements the contract of an abstraction or a base class, but when you make assumptions based on this, you get runtime or compiler errors. This is likely because the contract of the abstraction is broken in some way.
There are several ways to break a contract, and a common example is the Square-Rectangle problem. For example, here’s a Rectangle class:
public class Rectangle { public Rectangle(int height, int width) { . . . } public void setHeight(int height) { . . . } public int getHeight() { . . . } public void setWidth(int width) { . . . } public int getWidth() { . . . } }
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Deep Learning with Python by François Chollet(12313)
Hello! Python by Anthony Briggs(9676)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9592)
The Mikado Method by Ola Ellnestam Daniel Brolund(9568)
Dependency Injection in .NET by Mark Seemann(9103)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8096)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7613)
Grails in Action by Glen Smith Peter Ledbrook(7521)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7336)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6234)
Becoming a Dynamics 365 Finance and Supply Chain Solution Architect by Brent Dawson(5673)
Microservices with Go by Alexander Shuiskov(5396)
Practical Design Patterns for Java Developers by Miroslav Wengner(5325)
Test Automation Engineering Handbook by Manikandan Sambamurthy(5289)
Kotlin in Action by Dmitry Jemerov(4883)
Angular Projects - Third Edition by Aristeidis Bampakos(4626)
The Art of Crafting User Stories by The Art of Crafting User Stories(4192)
NetSuite for Consultants - Second Edition by Peter Ries(4167)
Demystifying Cryptography with OpenSSL 3.0 by Alexei Khlebnikov(3960)
