Programming Strategically with the Principle of Least Power
Leif Wickland
— Li Haoyi
— Li Haoyi
switch (n) { case 1: cost += 25; break; case 2: cost += 25; goto case 1; case 3: cost += 50; goto case 1; default: Console.WriteLine("Invalid selection."); break;}
From MSDN goto
docs
goto
in 2009goto
in 2009Baz baz = null;while (true) { // 20 lines calculating foo… if (!foo.isValid()) break; // 30 lines calculting bar… if (!bar.isValid()) break; // Another 30 lines calculating wah… if (!wah.isValid()) break; baz = new Baz(foo, bar, wah); break;}return baz;
Foo foo = calculateFoo();Bar bar = calculateBar();Wah wah = calculateWah();if (foo.isValid() && bar.isValid() && wah.isValid()) { return new Baz(foo, bar, wah);} else { return null;}
var label;if (havingGoodDay(bob)) label = "ok";else label = "bitter";
var label;if (havingGoodDay(bob)) label = "ok";else label = "bitter";
// ----- or -----const label = (havingGoodDay(bob)) ? "good" : "bitter";
From caniuse.com
From caniuse.com
function tellMeAboutYourFeels(bob) { var feels = "meh"; if (goodDay(bob)) feels = "hawt"; else if (badDay(bob)) feels = "bitter"; return feels;}
function tellMeAboutYourFeels(bob) { var feels = "meh"; if (goodDay(bob)) feels = "hawt"; else if (badDay(bob)) feels = "bitter"; return feels;}
// ----- or -----function tellMeAboutYourFeels(bob) { if (goodDay(bob)) return "hawt"; if (badDay(bob)) return "bitter"; return "meh";}
List<String> names = myBffs();// ----- or -----const List<String> names = myBffs();// ----- or -----ImmutableList<String> names = myBffs();// ----- or -----const ImmutableList<String> names = myBffs();
List<String> names = myBffs();
const List<String> names = myBffs();// ----- or -----ImmutableList<String> names = myBffs();// ----- or -----const ImmutableList<String> names = myBffs();
Thought experiment:
What's the simplest interface to your module?
Design:
class Node { String name()}
class Node { String name()}
class Graph { void addEdge(Node from, Node to) boolean hasCycle()}
Graph
and Node
sNode
can't store anything but a stringNode
typeNode
to hold whateverGraph
typeabstract class Node { String name()}abstract class GraphBase<Node> { Set<Node> getNodes() Set<Node> connectsTo(Node node) boolean hasCycle()}
class GraphUtil { static boolean hasCycle<N>( Set<N> nodes, Function<N, Set<N>> connectsTo(Node n) )}
Think in terms of usabilty for the person calling this code. Hopefully, you are probably the first user of your code when you write tests. More likely to write tests
Now that Java has added closures nearly every language has closures
Difference between closure and lambda
class Node { String name() Set<Node> connectsTo(Node n)}class Graph { static boolean hasCycle(Set<Node> nodes)}// ----- vs -----class GraphUtil { static boolean hasCycle(Set<N> nodes, Function<N, Set<N>> connectsTo)}hasCycle(nodes, node::connectsTo)
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
By Anton van Straaten From MIT CSAIL list via C2
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
By Anton van Straaten From MIT CSAIL list via C2
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures."
By Anton van Straaten From MIT CSAIL list via C2
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures."
Qc Na responded by hitting Anton with his stick, saying "When will you learn? Closures are a poor man's object."
By Anton van Straaten From MIT CSAIL list via C2
The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said "Master, I have heard that objects are a very good thing - is this true?"
Qc Na looked pityingly at his student and replied, "Foolish pupil - objects are merely a poor man's closures."
Chastised, Anton took his leave from his master and returned to his cell, intent on studying closures. He carefully read the entire "Lambda: The Ultimate..." series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
On his next walk with Qc Na, Anton attempted to impress his master by saying "Master, I have diligently studied the matter, and now understand that objects are truly a poor man's closures."
Qc Na responded by hitting Anton with his stick, saying "When will you learn? Closures are a poor man's object."
At that moment, Anton became enlightened.
Option
, Optional
, or Maybe
in most langaugesOption
, Optional
, or Maybe
in most langauges-1
a value or a failure code?Option
, Optional
, or Maybe
in most langauges-1
a value or a failure code?Option
is exactly either Some(value)
or None
for ( x <- Some(5) y <- Some(7)) yield x * y// Results in Some(35)
for ( x <- Some(5) y <- None) yield x * y// Results in None
Baz baz = null;while (true) { // 20 lines calculating foo… if (!foo.isValid()) break; // 30 lines calculting bar… if (!var.isValid()) break; // Another 30 lines calculating wah… if (!wah.isValid()) break; baz = new Baz(foo, bar, wah); break;}return baz;
Foo
, Bar
, and Wah
Foo
, Bar
, and Wah
Option
to indicate possibility of invaliddef makeFoo(): Option[Foo]def makeBar(): Option[Bar]def makeWah(): Option[Wah]for ( foo <- makeFoo() bar <- makeBar() wah <- makeWah()) yield new Baz(foo, bar, wah)
Optional<Foo> makeFoo() { …}Optional<Bar> makeBar() { … } Optional<Wah> makeWah() { … } return makeFoo().flatMap(foo -> makeBar().flatMap(bar -> makeWah().map(wah -> new Baz(foo, bar, wah); )));
throw
for flow controlnull
is the Billion Dollar Mistake according to inventorOption
Either
, to express more detailed failureOption
to Express Possible FailureKeyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |