SlideShare a Scribd company logo
It Is Possible to Do
Object-Oriented
Programming in Java
Kevlin Henney
kevlin@curbralan.com
@KevlinHenney
It Is Possible to Do Object-Oriented Programming in Java
It Is Possible to Do Object-Oriented Programming in Java
The Java programming language
platform provides a portable,
interpreted, high-performance,
simple, object-oriented
programming language and
supporting run-time environment.
http://java.sun.com/docs/white/langenv/Intro.doc.html#318
OOP to me means only messaging,
local retention and protection
and hiding of state-process, and
extreme late-binding of all
things.
Alan Kay
OOP to me means only messaging,
local retention and protection
and hiding of state-process, and
extreme late-binding of all
things. It can be done in
Smalltalk and in LISP. There are
possibly other systems in which
this is possible, but I'm not
aware of them.
Alan Kay
Ignorance
Apathy
Selfishness
Encapsulation
Inheritance
Polymorphism
Encapsulation
Polymorphism
Inheritance
Encapsulation
Polymorphism
Inheritance
encapsulate enclose (something) in or as if in a capsule.
 express the essential feature of (someone or something)
succinctly.
 enclose (a message or signal) in a set of codes which
allow use by or transfer through different computer
systems or networks.
 provide an interface for (a piece of software or hardware)
to allow or simplify access for the user.
The New Oxford Dictionary of English
It Is Possible to Do Object-Oriented Programming in Java
A distinction between inheritance and
subtyping is not often made: classes
are often equated directly with types.
From a behavioural point of view a
type defines characteristics and a
class defines an implementation of
these characteristics.
Kevlin Henney
Distributed Object-Oriented Computing:
The Development and Implementation of an Abstract Machine
It Is Possible to Do Object-Oriented Programming in Java
In many object-oriented programming languages the concept of
inheritance is present, which provides a mechanism for sharing code
among several classes of objects. Many people even regard inheritance
as the hallmark of object-orientedness in programming languages. We
do not agree with this view, and argue that the essence of object-
oriented programming is the encapsulation of data and operations in
objects and the protection of individual objects against each other.
Pierre America
"A Behavioural Approach to Subtyping in Object-Oriented Programming Languages"
In many object-oriented programming languages the concept of
inheritance is present, which provides a mechanism for sharing code
among several classes of objects. Many people even regard inheritance
as the hallmark of object-orientedness in programming languages. We
do not agree with this view, and argue that the essence of object-
oriented programming is the encapsulation of data and operations in
objects and the protection of individual objects against each other.
The author considers this principle of protection of objects against each
other as the basic and essential characteristic of object-oriented
programming. It is a refinement of the technique of abstract data types,
because it does not only protect one type of objects against all other
types, but one object against all other ones. As a programmer we can
consider ourselves at any moment to be sitting in exactly one object and
looking at all the other objects from outside.
Pierre America
"A Behavioural Approach to Subtyping in Object-Oriented Programming Languages"
Object-oriented programming does not have
an exclusive claim to all these good properties.
Systems may be modeled by other paradigms.
Martín Abadi and Luca Cardelli
A Theory of Objects
Object-oriented programming does not have
an exclusive claim to all these good properties.
Systems may be modeled by other paradigms.
Resilience can be achieved just as well by
organizing programs around abstract data
types, independently of taxonomies; in fact,
data abstraction alone is sometimes taken as
the essence of object orientation.
Martín Abadi and Luca Cardelli
A Theory of Objects
abstraction, n. (Logic)
 the process of formulating a generalized concept of
a common property by disregarding the differences
between a number of particular instances. On such
an account, we acquired the concept of red by
recognizing it as common to, and so abstracting it
from the other properties of, those individual
objects we were originally taught to call red.
 an operator that forms a class name or predicate
from any given expression.
E J Borowski and J M Borwein
Dictionary of Mathematics
 T   RecentlyUsedList 
{
new : RecentlyUsedList[T],
isEmpty : RecentlyUsedList[T]  Boolean,
size : RecentlyUsedList[T]  Integer,
add : RecentlyUsedList[T]  Integer  RecentlyUsedList[T],
get : RecentlyUsedList[T]  Integer  T,
equals : RecentlyUsedList[T]  RecentlyUsedList[T]  Boolean
}
class RecentlyUsedList
{
private …
public boolean isEmpty() …
public int size() …
public void add(String toAdd) …
public String get(int index) …
public boolean equals(RecentlyUsedList other) …
}
class RecentlyUsedList
{
private …
public boolean isEmpty() …
public int size() …
public void add(String toAdd) …
public String get(int index) …
public boolean equals(RecentlyUsedList other) …
public boolean equals(Object other) …
}
class RecentlyUsedList
{
private List<String> items = new ArrayList<String>();
public boolean isEmpty()
{
return items.isEmpty();
}
public int size()
{
return items.size();
}
public void add(String toAdd)
{
items.remove(toAdd);
items.add(toAdd);
}
public String get(int index)
{
return items.get(size() – index – 1);
}
public boolean equals(RecentlyUsedList other)
{
return other != null && items.equals(other.items);
}
public boolean equals(Object other)
{
return
other instanceof RecentlyUsedList &&
equals((RecentlyUsedList) other);
}
}
typedef struct RecentlyUsedList RecentlyUsedList;
RecentlyUsedList * create();
void destroy(RecentlyUsedList *);
bool isEmpty(const RecentlyUsedList *);
int size(const RecentlyUsedList *);
void add(RecentlyUsedList *, int toAdd);
int get(const RecentlyUsedList *, int index);
bool equals(const RecentlyUsedList *, const RecentlyUsedList *);
struct RecentlyUsedList
{
int * items;
int length;
};
RecentlyUsedList * create()
{
RecentlyUsedList * result = (RecentlyUsedList *) malloc(sizeof(RecentlyUsedList));
result->items = 0;
result->length = 0;
return result;
}
void destroy(RecentlyUsedList * self)
{
free(self->items);
free(self);
}
bool isEmpty(const RecentlyUsedList * self)
{
return self->length == 0;
}
int size(const RecentlyUsedList * self)
{
return self->length;
}
static int indexOf(const RecentlyUsedList * self, int toFind)
{
int result = -1;
for(int index = 0; result == -1 && index != self->length; ++index)
if(self->items[index] == toFind)
result = index;
return result;
}
static void removeAt(RecentlyUsedList * self, int index)
{
memmove(&self->items[index], &self->items[index + 1], (self->length - index - 1) * sizeof(int));
--self->length;
}
void add(RecentlyUsedList * self, int toAdd)
{
int found = indexOf(self, toAdd);
if(found != -1)
removeAt(self, found);
self->items = (int *) realloc(self->items, (self->length + 1) * sizeof(int));
self->items[self->length] = toAdd;
++self->length;
}
int get(const RecentlyUsedList * self, int index)
{
return self->items[self->length - index - 1];
}
bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
return lhs->length == rhs->length && memcmp(lhs->items, rhs->items, lhs->length * sizeof(int)) == 0;
}
struct RecentlyUsedList
{
std::vector<int> items;
};
extern "C"
{
RecentlyUsedList * create()
{
return new RecentlyUsedList;
}
void destroy(RecentlyUsedList * self)
{
delete self;
}
bool isEmpty(const RecentlyUsedList * self)
{
return self->items.empty();
}
int size(const RecentlyUsedList * self)
{
return self->items.size();
}
void add(RecentlyUsedList * self, int toAdd)
{
std::vector<int>::iterator found =
std::find(self->items.begin(), self->items.end(), toAdd);
if(found != self->items.end())
self->items.erase(found);
self->items.push_back(toAdd);
}
int get(const RecentlyUsedList * self, int index)
{
return self->items[self->items.size() - index - 1];
}
bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
return lhs->items == rhs->items;
}
}
OO ≡ ADT?
OO ≡ ADT/
William Cook, "On Understanding Data Abstraction, Revisited"
class RecentlyUsedList
{
...
public boolean equals(RecentlyUsedList other)
{
return other != null && items.equals(other.items);
}
public boolean equals(Object other)
{
return
other instanceof RecentlyUsedList &&
equals((RecentlyUsedList) other);
}
}
bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
return
lhs->length == rhs->length &&
memcmp(lhs->items, rhs->items, lhs->length * sizeof(int)) == 0;
}
extern "C"
{
...
bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
return lhs->items == rhs->items;
}
}
Reflexivity: I am me. Symmetry: If you're the same
as me, I'm the same as you.
Transitivity: If I'm the same
as you, and you're the same
as them, then I'm the same
as them too.
Consistency: If there's no change,
everything's the same as it ever was.
Null inequality: I am not nothing.
Hash equality: If we're the same, we
both share the same magic numbers.
No throw: If you call,
I won't hang up.
Here are four common pitfalls that can cause
inconsistent behavior when overriding equals:
1. Defining equals with the wrong signature.
2. Changing equals without also changing hashCode.
3. Defining equals in terms of mutable fields.
4. Failing to define equals as an equivalence relation.
Martin Odersky, Lex Spoon and Bill Venners
"How to Write an Equality Method in Java"
http://www.artima.com/lejava/articles/equality.html
Here are four common pitfalls that can cause
inconsistent behavior when overriding equals:
1. Defining equals with the wrong signature.
2. Changing equals without also changing hashCode.
3. Relying on equals and hashCode to be invariant
when they depend on mutable fields.
4. Failing to define equals as an equivalence relation.
Here are four common pitfalls that can cause
inconsistent behavior when overriding equals:
1. Defining equals with the wrong signature.
2. Changing equals without also changing hashCode.
3. Failing to define equals as an equivalence relation.
4. Relying on equals and hashCode to be invariant
when they depend on mutable fields.
bool equals(
const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
bool result = size(lhs) == size(rhs);
for(int index = 0; result && index != size(lhs); ++index)
result = get(lhs, index) == get(rhs, index);
return result;
}
extern "C" bool equals(
const RecentlyUsedList * lhs, const RecentlyUsedList * rhs)
{
bool result = size(lhs) == size(rhs);
for(int index = 0; result && index != size(lhs); ++index)
result = get(lhs, index) == get(rhs, index);
return result;
}
class RecentlyUsedList
{
...
public boolean equals(RecentlyUsedList other)
{
boolean result = other != null && size() == other.size();
for(int index = 0; result && index != size(); ++index)
result = get(index).equals(other.get(index));
return result;
}
public boolean equals(Object other)
{
return
other instanceof RecentlyUsedList &&
equals((RecentlyUsedList) other);
}
}
One of the most pure object-oriented
programming models yet defined is the
Component Object Model (COM). It
enforces all of these principles rigorously.
Programming in COM is very flexible and
powerful as a result. There is no built-in notion
of equality. There is no way to determine if
an object is an instance of a given class.
William Cook
"On Understanding Data Abstraction, Revisited"
class RecentlyUsedList
{
...
public boolean equals(RecentlyUsedList other)
{
boolean result = other != null && size() == other.size();
for(int index = 0; result && index != size(); ++index)
result = get(index).equals(other.get(index));
return result;
}
public boolean equals(Object other)
{
return
other instanceof RecentlyUsedList &&
equals((RecentlyUsedList) other);
}
}
class RecentlyUsedList
{
...
public boolean equals(RecentlyUsedList other)
{
boolean result = other != null && size() == other.size();
for(int index = 0; result && index != size(); ++index)
result = get(index).equals(other.get(index));
return result;
}
}
In a purist view of object-oriented methodology,
dynamic dispatch is the only mechanism for
taking advantage of attributes that have been
forgotten by subsumption. This position is often
taken on abstraction grounds: no knowledge
should be obtainable about objects except by
invoking their methods. In the purist approach,
subsumption provides a simple and effective
mechanism for hiding private attributes.
Martín Abadi and Luca Cardelli, A Theory of Objects
A type hierarchy is composed of subtypes and
supertypes. The intuitive idea of a subtype is one
whose objects provide all the behavior of objects
of another type (the supertype) plus something
extra. What is wanted here is something like the
following substitution property: If for each
object o1 of type S there is an object o2 of type T
such that for all programs P defined in terms of T,
the behavior of P is unchanged when o1 is
substituted for o2, then S is a subtype of T.
Barbara Liskov
"Data Abstraction and Hierarchy"
A type hierarchy is composed of subtypes and
supertypes. The intuitive idea of a subtype is one
whose objects provide all the behavior of objects
of another type (the supertype) plus something
extra. What is wanted here is something like the
following substitution property: If for each
object o1 of type S there is an object o2 of type T
such that for all programs P defined in terms of T,
the behavior of P is unchanged when o1 is
substituted for o2, then S is a subtype of T.
Barbara Liskov
"Data Abstraction and Hierarchy"
A type hierarchy is composed of subtypes and
supertypes. The intuitive idea of a subtype is one
whose objects provide all the behavior of objects
of another type (the supertype) plus something
extra. What is wanted here is something like the
following substitution property: If for each
object o1 of type S there is an object o2 of type T
such that for all programs P defined in terms of T,
the behavior of P is unchanged when o1 is
substituted for o2, then S is a subtype of T.
Barbara Liskov
"Data Abstraction and Hierarchy"
A type hierarchy is composed of subtypes and
supertypes. The intuitive idea of a subtype is one
whose objects provide all the behavior of objects
of another type (the supertype) plus something
extra. What is wanted here is something like the
following substitution property: If for each
object o1 of type S there is an object o2 of type T
such that for all programs P defined in terms of T,
the behavior of P is unchanged when o1 is
substituted for o2, then S is a subtype of T.
Barbara Liskov
"Data Abstraction and Hierarchy"
William Cook, "On Understanding Data Abstraction, Revisited"
William Cook, "On Understanding Data Abstraction, Revisited"
interface RecentlyUsedList
{
boolean isEmpty();
int size();
void add(String toAdd);
String get(int index);
boolean equals(RecentlyUsedList other);
}
class RecentlyUsedListImpl
implements RecentlyUsedList
{
private List<String> items = …;
public boolean isEmpty() …
public int size() …
public void add(String toAdd) …
public String get(int index) …
public boolean equals(RecentlyUsedList other) …
public boolean equals(Object other) …
}
class ArrayListBasedRecentlyUsedList
implements RecentlyUsedList
{
private List<String> items = …;
public boolean isEmpty() …
public int size() …
public void add(String toAdd) …
public String get(int index) …
public boolean equals(RecentlyUsedList other) …
public boolean equals(Object other) …
}
class RandomAccessRecentlyUsedList
implements RecentlyUsedList
{
private List<String> items = …;
public boolean isEmpty() …
public int size() …
public void add(String toAdd) …
public String get(int index) …
public boolean equals(RecentlyUsedList other) …
public boolean equals(Object other) …
}
RecentlyUsedList list =
new RandomAccessRecentlyUsedList();
class RandomAccessRecentlyUsedList implements RecentlyUsedList
{
...
public boolean equals(RecentlyUsedList other)
{
boolean result = other != null && size() == other.size();
for(int index = 0; result && index != size(); ++index)
result = get(index).equals(other.get(index));
return result;
}
public boolean equals(Object other)
{
return
other instanceof RecentlyUsedList &&
equals((RecentlyUsedList) other);
}
}
Here are five common pitfalls that can cause
inconsistent behavior when overriding equals:
1. Defining equals with the wrong signature.
2. Changing equals without also changing hashCode.
3. Failing to define equals as an equivalence relation.
4. Defining equals in a class hierarchy where types
and classes are not properly distinguished.
5. Relying on equals and hashCode to be invariant
when they depend on mutable fields.
It Is Possible to Do Object-Oriented Programming in Java
William Cook, "On Understanding Data Abstraction, Revisited"
newRecentlyUsedList =
  (let items = ref() 
{
isEmpty =   #items = 0,
size =   #items,
add =  x 
items := xˆitemsy  y  0...#items  itemsy  x,
get =  i  itemsi
})
var newRecentlyUsedList = function() {
var items = []
return {
isEmpty: function() {
return items.length === 0
},
size: function() {
return items.length
},
add: function(newItem) {
(items = items.filter(function(item) {
return item !== newItem
})).unshift(newItem)
},
get: function(index) {
return items[index]
}
}
}
var newRecentlyUsedList = function() {
var items = []
return {
...
supertypeOf: function(that) {
return that &&
that.isEmpty && that.size && that.add &&
that.get && that.supertypeOf && that.equals
},
equals: function(that) {
var result =
this.supertypeOf(that) &&
that.supertypeOf(this) &&
this.size() === that.size()
for(var i = 0; result && i !== this.size(); ++i)
result = this.get(i) === that.get(i)
return result
}
}
}
It Is Possible to Do Object-Oriented Programming in Java
One of the most powerful mechanisms
for program structuring [...] is the block
and procedure concept. [...]
A procedure which is capable of giving
rise to block instances which survive its
call will be known as a class; and the
instances will be known as objects of
that class. [...]
A call of a class generates a new object
of that class.
Ole-Johan Dahl and C A R Hoare
"Hierarchical Program Structures"
Paradigms lost?
Or paradigms regained?
It Is Possible to Do Object-Oriented Programming in Java
It Is Possible to Do Object-Oriented Programming in Java
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.
http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg03277.html

More Related Content

PDF
Post-graduate course: Object technology: Prototype-based object-oriented prog...
PPT
Wrapper class (130240116056)
PPT
wrapper classes
PDF
Wrapper classes
PPTX
Vectors in Java
PPTX
L9 wrapper classes
Post-graduate course: Object technology: Prototype-based object-oriented prog...
Wrapper class (130240116056)
wrapper classes
Wrapper classes
Vectors in Java
L9 wrapper classes

What's hot (20)

PPTX
JSpiders - Wrapper classes
PDF
Java Wrapper Classes and I/O Mechanisms
PPTX
Basic concept of Object Oriented Programming
PPS
Wrapper class
PDF
Lecture 24
PDF
Farhaan Ahmed, BCA 2nd Year
PPT
11 Using classes and objects
PPTX
Object Oriented Programming in Python
PPTX
JavsScript OOP
PPT
Java: Objects and Object References
PDF
String handling(string buffer class)
PPTX
OOPS features using Objective C
PDF
PDF
SEMANTIC PARSING OF SIMPLE SENTENCES IN UNIFICATION-BASED VIETNAMESE GRAMMAR
PDF
Wrapper classes
PPTX
Ruby object model
PPTX
JavaScript OOPS Implimentation
PPTX
Ajaxworld
PPT
Prototype Utility Methods(1)
JSpiders - Wrapper classes
Java Wrapper Classes and I/O Mechanisms
Basic concept of Object Oriented Programming
Wrapper class
Lecture 24
Farhaan Ahmed, BCA 2nd Year
11 Using classes and objects
Object Oriented Programming in Python
JavsScript OOP
Java: Objects and Object References
String handling(string buffer class)
OOPS features using Objective C
SEMANTIC PARSING OF SIMPLE SENTENCES IN UNIFICATION-BASED VIETNAMESE GRAMMAR
Wrapper classes
Ruby object model
JavaScript OOPS Implimentation
Ajaxworld
Prototype Utility Methods(1)
Ad

Viewers also liked (20)

PPTX
oops concept in java | object oriented programming in java
PPT
Object Oriented Programming with Java
PPSX
Power Point Presentation on Accounting Concepts and Principles
PPT
Object Oriented Programming Concepts
PPTX
Introduction to java
PPTX
Chapter 1: Fundamentals of Accounting
PPT
Basics of accounting
PDF
LinkedIn SlideShare: Knowledge, Well-Presented
PPTX
From Selling 2 Books a Day, To 200 - How I Did It? - J. Thorn
PPTX
Java basic
PPT
Java for C++ programers
PPSX
Java Object Oriented Programming
PDF
Java Basic Oops Concept
PPTX
Java 102 intro to object-oriented programming in java
PPT
Oop java
PPTX
Basic Concepts of OOPs (Object Oriented Programming in Java)
PPTX
1. principles of accounting
PPT
Object Oriented Programming with Java
PPT
Introduction to Basic Accounting Concept
PPTX
Presentation on Accounting Principles
oops concept in java | object oriented programming in java
Object Oriented Programming with Java
Power Point Presentation on Accounting Concepts and Principles
Object Oriented Programming Concepts
Introduction to java
Chapter 1: Fundamentals of Accounting
Basics of accounting
LinkedIn SlideShare: Knowledge, Well-Presented
From Selling 2 Books a Day, To 200 - How I Did It? - J. Thorn
Java basic
Java for C++ programers
Java Object Oriented Programming
Java Basic Oops Concept
Java 102 intro to object-oriented programming in java
Oop java
Basic Concepts of OOPs (Object Oriented Programming in Java)
1. principles of accounting
Object Oriented Programming with Java
Introduction to Basic Accounting Concept
Presentation on Accounting Principles
Ad

Similar to It Is Possible to Do Object-Oriented Programming in Java (20)

PPT
Oop by edgar lagman jr
DOCX
OOP Lab-manual btech in cse kerala technological university
PPT
Object Oriented Language
PPTX
UNIT I OOP AND JAVA FUNDAMENTALS CONSTRUCTOR
PDF
Java Progamming Paradigms, OOPS Concept, Introduction to Java, Structure of J...
PDF
Java Programming Paradigms Chapter 1
PPTX
SKILLWISE - OOPS CONCEPT
PDF
Introduction to object oriented programming
PPT
Java Tutorial
ODT
Object Oriented Approach Within Siebel Boundaries
PPTX
Oop.pptx
PPTX
FP vs OOP : Design Methodology by Harshad Nawathe
PPTX
Introduction
PPTX
Advanced Topics on Database - Unit-2 AU17
PDF
JAVA-PPT'S.pdf
PPTX
chapter 5 concepts of object oriented programming
PPT
Ooad ch 2
PDF
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...
Oop by edgar lagman jr
OOP Lab-manual btech in cse kerala technological university
Object Oriented Language
UNIT I OOP AND JAVA FUNDAMENTALS CONSTRUCTOR
Java Progamming Paradigms, OOPS Concept, Introduction to Java, Structure of J...
Java Programming Paradigms Chapter 1
SKILLWISE - OOPS CONCEPT
Introduction to object oriented programming
Java Tutorial
Object Oriented Approach Within Siebel Boundaries
Oop.pptx
FP vs OOP : Design Methodology by Harshad Nawathe
Introduction
Advanced Topics on Database - Unit-2 AU17
JAVA-PPT'S.pdf
chapter 5 concepts of object oriented programming
Ooad ch 2
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...

More from Kevlin Henney (20)

PDF
Program with GUTs
PDF
The Case for Technical Excellence
PDF
Empirical Development
PDF
Lambda? You Keep Using that Letter
PDF
Lambda? You Keep Using that Letter
PDF
Solid Deconstruction
PDF
Get Kata
PDF
Procedural Programming: It’s Back? It Never Went Away
PDF
Structure and Interpretation of Test Cases
PDF
Agility ≠ Speed
PDF
Refactoring to Immutability
PDF
Old Is the New New
PDF
Turning Development Outside-In
PDF
Giving Code a Good Name
PDF
Clean Coders Hate What Happens To Your Code When You Use These Enterprise Pro...
PDF
Thinking Outside the Synchronisation Quadrant
PDF
Code as Risk
PDF
Software Is Details
PDF
Game of Sprints
PDF
Good Code
Program with GUTs
The Case for Technical Excellence
Empirical Development
Lambda? You Keep Using that Letter
Lambda? You Keep Using that Letter
Solid Deconstruction
Get Kata
Procedural Programming: It’s Back? It Never Went Away
Structure and Interpretation of Test Cases
Agility ≠ Speed
Refactoring to Immutability
Old Is the New New
Turning Development Outside-In
Giving Code a Good Name
Clean Coders Hate What Happens To Your Code When You Use These Enterprise Pro...
Thinking Outside the Synchronisation Quadrant
Code as Risk
Software Is Details
Game of Sprints
Good Code

Recently uploaded (20)

PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PPTX
Essential Infomation Tech presentation.pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
AI in Product Development-omnex systems
PDF
top salesforce developer skills in 2025.pdf
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PPTX
Transform Your Business with a Software ERP System
PDF
medical staffing services at VALiNTRY
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Digital Strategies for Manufacturing Companies
PDF
Nekopoi APK 2025 free lastest update
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
CHAPTER 2 - PM Management and IT Context
Softaken Excel to vCard Converter Software.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
wealthsignaloriginal-com-DS-text-... (1).pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
Essential Infomation Tech presentation.pptx
Design an Analysis of Algorithms II-SECS-1021-03
PTS Company Brochure 2025 (1).pdf.......
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
AI in Product Development-omnex systems
top salesforce developer skills in 2025.pdf
VVF-Customer-Presentation2025-Ver1.9.pptx
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Transform Your Business with a Software ERP System
medical staffing services at VALiNTRY
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Digital Strategies for Manufacturing Companies
Nekopoi APK 2025 free lastest update
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...

It Is Possible to Do Object-Oriented Programming in Java

  • 1. It Is Possible to Do Object-Oriented Programming in Java Kevlin Henney kevlin@curbralan.com @KevlinHenney
  • 4. The Java programming language platform provides a portable, interpreted, high-performance, simple, object-oriented programming language and supporting run-time environment. http://java.sun.com/docs/white/langenv/Intro.doc.html#318
  • 5. OOP to me means only messaging, local retention and protection and hiding of state-process, and extreme late-binding of all things. Alan Kay
  • 6. OOP to me means only messaging, local retention and protection and hiding of state-process, and extreme late-binding of all things. It can be done in Smalltalk and in LISP. There are possibly other systems in which this is possible, but I'm not aware of them. Alan Kay
  • 11. encapsulate enclose (something) in or as if in a capsule.  express the essential feature of (someone or something) succinctly.  enclose (a message or signal) in a set of codes which allow use by or transfer through different computer systems or networks.  provide an interface for (a piece of software or hardware) to allow or simplify access for the user. The New Oxford Dictionary of English
  • 13. A distinction between inheritance and subtyping is not often made: classes are often equated directly with types. From a behavioural point of view a type defines characteristics and a class defines an implementation of these characteristics. Kevlin Henney Distributed Object-Oriented Computing: The Development and Implementation of an Abstract Machine
  • 15. In many object-oriented programming languages the concept of inheritance is present, which provides a mechanism for sharing code among several classes of objects. Many people even regard inheritance as the hallmark of object-orientedness in programming languages. We do not agree with this view, and argue that the essence of object- oriented programming is the encapsulation of data and operations in objects and the protection of individual objects against each other. Pierre America "A Behavioural Approach to Subtyping in Object-Oriented Programming Languages"
  • 16. In many object-oriented programming languages the concept of inheritance is present, which provides a mechanism for sharing code among several classes of objects. Many people even regard inheritance as the hallmark of object-orientedness in programming languages. We do not agree with this view, and argue that the essence of object- oriented programming is the encapsulation of data and operations in objects and the protection of individual objects against each other. The author considers this principle of protection of objects against each other as the basic and essential characteristic of object-oriented programming. It is a refinement of the technique of abstract data types, because it does not only protect one type of objects against all other types, but one object against all other ones. As a programmer we can consider ourselves at any moment to be sitting in exactly one object and looking at all the other objects from outside. Pierre America "A Behavioural Approach to Subtyping in Object-Oriented Programming Languages"
  • 17. Object-oriented programming does not have an exclusive claim to all these good properties. Systems may be modeled by other paradigms. Martín Abadi and Luca Cardelli A Theory of Objects
  • 18. Object-oriented programming does not have an exclusive claim to all these good properties. Systems may be modeled by other paradigms. Resilience can be achieved just as well by organizing programs around abstract data types, independently of taxonomies; in fact, data abstraction alone is sometimes taken as the essence of object orientation. Martín Abadi and Luca Cardelli A Theory of Objects
  • 19. abstraction, n. (Logic)  the process of formulating a generalized concept of a common property by disregarding the differences between a number of particular instances. On such an account, we acquired the concept of red by recognizing it as common to, and so abstracting it from the other properties of, those individual objects we were originally taught to call red.  an operator that forms a class name or predicate from any given expression. E J Borowski and J M Borwein Dictionary of Mathematics
  • 20.  T   RecentlyUsedList  { new : RecentlyUsedList[T], isEmpty : RecentlyUsedList[T]  Boolean, size : RecentlyUsedList[T]  Integer, add : RecentlyUsedList[T]  Integer  RecentlyUsedList[T], get : RecentlyUsedList[T]  Integer  T, equals : RecentlyUsedList[T]  RecentlyUsedList[T]  Boolean }
  • 21. class RecentlyUsedList { private … public boolean isEmpty() … public int size() … public void add(String toAdd) … public String get(int index) … public boolean equals(RecentlyUsedList other) … }
  • 22. class RecentlyUsedList { private … public boolean isEmpty() … public int size() … public void add(String toAdd) … public String get(int index) … public boolean equals(RecentlyUsedList other) … public boolean equals(Object other) … }
  • 23. class RecentlyUsedList { private List<String> items = new ArrayList<String>(); public boolean isEmpty() { return items.isEmpty(); } public int size() { return items.size(); } public void add(String toAdd) { items.remove(toAdd); items.add(toAdd); } public String get(int index) { return items.get(size() – index – 1); } public boolean equals(RecentlyUsedList other) { return other != null && items.equals(other.items); } public boolean equals(Object other) { return other instanceof RecentlyUsedList && equals((RecentlyUsedList) other); } }
  • 24. typedef struct RecentlyUsedList RecentlyUsedList; RecentlyUsedList * create(); void destroy(RecentlyUsedList *); bool isEmpty(const RecentlyUsedList *); int size(const RecentlyUsedList *); void add(RecentlyUsedList *, int toAdd); int get(const RecentlyUsedList *, int index); bool equals(const RecentlyUsedList *, const RecentlyUsedList *);
  • 25. struct RecentlyUsedList { int * items; int length; };
  • 26. RecentlyUsedList * create() { RecentlyUsedList * result = (RecentlyUsedList *) malloc(sizeof(RecentlyUsedList)); result->items = 0; result->length = 0; return result; } void destroy(RecentlyUsedList * self) { free(self->items); free(self); } bool isEmpty(const RecentlyUsedList * self) { return self->length == 0; } int size(const RecentlyUsedList * self) { return self->length; } static int indexOf(const RecentlyUsedList * self, int toFind) { int result = -1; for(int index = 0; result == -1 && index != self->length; ++index) if(self->items[index] == toFind) result = index; return result; } static void removeAt(RecentlyUsedList * self, int index) { memmove(&self->items[index], &self->items[index + 1], (self->length - index - 1) * sizeof(int)); --self->length; } void add(RecentlyUsedList * self, int toAdd) { int found = indexOf(self, toAdd); if(found != -1) removeAt(self, found); self->items = (int *) realloc(self->items, (self->length + 1) * sizeof(int)); self->items[self->length] = toAdd; ++self->length; } int get(const RecentlyUsedList * self, int index) { return self->items[self->length - index - 1]; } bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { return lhs->length == rhs->length && memcmp(lhs->items, rhs->items, lhs->length * sizeof(int)) == 0; }
  • 28. extern "C" { RecentlyUsedList * create() { return new RecentlyUsedList; } void destroy(RecentlyUsedList * self) { delete self; } bool isEmpty(const RecentlyUsedList * self) { return self->items.empty(); } int size(const RecentlyUsedList * self) { return self->items.size(); } void add(RecentlyUsedList * self, int toAdd) { std::vector<int>::iterator found = std::find(self->items.begin(), self->items.end(), toAdd); if(found != self->items.end()) self->items.erase(found); self->items.push_back(toAdd); } int get(const RecentlyUsedList * self, int index) { return self->items[self->items.size() - index - 1]; } bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { return lhs->items == rhs->items; } }
  • 31. William Cook, "On Understanding Data Abstraction, Revisited"
  • 32. class RecentlyUsedList { ... public boolean equals(RecentlyUsedList other) { return other != null && items.equals(other.items); } public boolean equals(Object other) { return other instanceof RecentlyUsedList && equals((RecentlyUsedList) other); } }
  • 33. bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { return lhs->length == rhs->length && memcmp(lhs->items, rhs->items, lhs->length * sizeof(int)) == 0; }
  • 34. extern "C" { ... bool equals(const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { return lhs->items == rhs->items; } }
  • 35. Reflexivity: I am me. Symmetry: If you're the same as me, I'm the same as you. Transitivity: If I'm the same as you, and you're the same as them, then I'm the same as them too. Consistency: If there's no change, everything's the same as it ever was. Null inequality: I am not nothing. Hash equality: If we're the same, we both share the same magic numbers. No throw: If you call, I won't hang up.
  • 36. Here are four common pitfalls that can cause inconsistent behavior when overriding equals: 1. Defining equals with the wrong signature. 2. Changing equals without also changing hashCode. 3. Defining equals in terms of mutable fields. 4. Failing to define equals as an equivalence relation. Martin Odersky, Lex Spoon and Bill Venners "How to Write an Equality Method in Java" http://www.artima.com/lejava/articles/equality.html
  • 37. Here are four common pitfalls that can cause inconsistent behavior when overriding equals: 1. Defining equals with the wrong signature. 2. Changing equals without also changing hashCode. 3. Relying on equals and hashCode to be invariant when they depend on mutable fields. 4. Failing to define equals as an equivalence relation.
  • 38. Here are four common pitfalls that can cause inconsistent behavior when overriding equals: 1. Defining equals with the wrong signature. 2. Changing equals without also changing hashCode. 3. Failing to define equals as an equivalence relation. 4. Relying on equals and hashCode to be invariant when they depend on mutable fields.
  • 39. bool equals( const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { bool result = size(lhs) == size(rhs); for(int index = 0; result && index != size(lhs); ++index) result = get(lhs, index) == get(rhs, index); return result; }
  • 40. extern "C" bool equals( const RecentlyUsedList * lhs, const RecentlyUsedList * rhs) { bool result = size(lhs) == size(rhs); for(int index = 0; result && index != size(lhs); ++index) result = get(lhs, index) == get(rhs, index); return result; }
  • 41. class RecentlyUsedList { ... public boolean equals(RecentlyUsedList other) { boolean result = other != null && size() == other.size(); for(int index = 0; result && index != size(); ++index) result = get(index).equals(other.get(index)); return result; } public boolean equals(Object other) { return other instanceof RecentlyUsedList && equals((RecentlyUsedList) other); } }
  • 42. One of the most pure object-oriented programming models yet defined is the Component Object Model (COM). It enforces all of these principles rigorously. Programming in COM is very flexible and powerful as a result. There is no built-in notion of equality. There is no way to determine if an object is an instance of a given class. William Cook "On Understanding Data Abstraction, Revisited"
  • 43. class RecentlyUsedList { ... public boolean equals(RecentlyUsedList other) { boolean result = other != null && size() == other.size(); for(int index = 0; result && index != size(); ++index) result = get(index).equals(other.get(index)); return result; } public boolean equals(Object other) { return other instanceof RecentlyUsedList && equals((RecentlyUsedList) other); } }
  • 44. class RecentlyUsedList { ... public boolean equals(RecentlyUsedList other) { boolean result = other != null && size() == other.size(); for(int index = 0; result && index != size(); ++index) result = get(index).equals(other.get(index)); return result; } }
  • 45. In a purist view of object-oriented methodology, dynamic dispatch is the only mechanism for taking advantage of attributes that have been forgotten by subsumption. This position is often taken on abstraction grounds: no knowledge should be obtainable about objects except by invoking their methods. In the purist approach, subsumption provides a simple and effective mechanism for hiding private attributes. Martín Abadi and Luca Cardelli, A Theory of Objects
  • 46. A type hierarchy is composed of subtypes and supertypes. The intuitive idea of a subtype is one whose objects provide all the behavior of objects of another type (the supertype) plus something extra. What is wanted here is something like the following substitution property: If for each object o1 of type S there is an object o2 of type T such that for all programs P defined in terms of T, the behavior of P is unchanged when o1 is substituted for o2, then S is a subtype of T. Barbara Liskov "Data Abstraction and Hierarchy"
  • 47. A type hierarchy is composed of subtypes and supertypes. The intuitive idea of a subtype is one whose objects provide all the behavior of objects of another type (the supertype) plus something extra. What is wanted here is something like the following substitution property: If for each object o1 of type S there is an object o2 of type T such that for all programs P defined in terms of T, the behavior of P is unchanged when o1 is substituted for o2, then S is a subtype of T. Barbara Liskov "Data Abstraction and Hierarchy"
  • 48. A type hierarchy is composed of subtypes and supertypes. The intuitive idea of a subtype is one whose objects provide all the behavior of objects of another type (the supertype) plus something extra. What is wanted here is something like the following substitution property: If for each object o1 of type S there is an object o2 of type T such that for all programs P defined in terms of T, the behavior of P is unchanged when o1 is substituted for o2, then S is a subtype of T. Barbara Liskov "Data Abstraction and Hierarchy"
  • 49. A type hierarchy is composed of subtypes and supertypes. The intuitive idea of a subtype is one whose objects provide all the behavior of objects of another type (the supertype) plus something extra. What is wanted here is something like the following substitution property: If for each object o1 of type S there is an object o2 of type T such that for all programs P defined in terms of T, the behavior of P is unchanged when o1 is substituted for o2, then S is a subtype of T. Barbara Liskov "Data Abstraction and Hierarchy"
  • 50. William Cook, "On Understanding Data Abstraction, Revisited"
  • 51. William Cook, "On Understanding Data Abstraction, Revisited"
  • 52. interface RecentlyUsedList { boolean isEmpty(); int size(); void add(String toAdd); String get(int index); boolean equals(RecentlyUsedList other); }
  • 53. class RecentlyUsedListImpl implements RecentlyUsedList { private List<String> items = …; public boolean isEmpty() … public int size() … public void add(String toAdd) … public String get(int index) … public boolean equals(RecentlyUsedList other) … public boolean equals(Object other) … }
  • 54. class ArrayListBasedRecentlyUsedList implements RecentlyUsedList { private List<String> items = …; public boolean isEmpty() … public int size() … public void add(String toAdd) … public String get(int index) … public boolean equals(RecentlyUsedList other) … public boolean equals(Object other) … }
  • 55. class RandomAccessRecentlyUsedList implements RecentlyUsedList { private List<String> items = …; public boolean isEmpty() … public int size() … public void add(String toAdd) … public String get(int index) … public boolean equals(RecentlyUsedList other) … public boolean equals(Object other) … }
  • 56. RecentlyUsedList list = new RandomAccessRecentlyUsedList();
  • 57. class RandomAccessRecentlyUsedList implements RecentlyUsedList { ... public boolean equals(RecentlyUsedList other) { boolean result = other != null && size() == other.size(); for(int index = 0; result && index != size(); ++index) result = get(index).equals(other.get(index)); return result; } public boolean equals(Object other) { return other instanceof RecentlyUsedList && equals((RecentlyUsedList) other); } }
  • 58. Here are five common pitfalls that can cause inconsistent behavior when overriding equals: 1. Defining equals with the wrong signature. 2. Changing equals without also changing hashCode. 3. Failing to define equals as an equivalence relation. 4. Defining equals in a class hierarchy where types and classes are not properly distinguished. 5. Relying on equals and hashCode to be invariant when they depend on mutable fields.
  • 60. William Cook, "On Understanding Data Abstraction, Revisited"
  • 61. newRecentlyUsedList =   (let items = ref()  { isEmpty =   #items = 0, size =   #items, add =  x  items := xˆitemsy  y  0...#items  itemsy  x, get =  i  itemsi })
  • 62. var newRecentlyUsedList = function() { var items = [] return { isEmpty: function() { return items.length === 0 }, size: function() { return items.length }, add: function(newItem) { (items = items.filter(function(item) { return item !== newItem })).unshift(newItem) }, get: function(index) { return items[index] } } }
  • 63. var newRecentlyUsedList = function() { var items = [] return { ... supertypeOf: function(that) { return that && that.isEmpty && that.size && that.add && that.get && that.supertypeOf && that.equals }, equals: function(that) { var result = this.supertypeOf(that) && that.supertypeOf(this) && this.size() === that.size() for(var i = 0; result && i !== this.size(); ++i) result = this.get(i) === that.get(i) return result } } }
  • 65. One of the most powerful mechanisms for program structuring [...] is the block and procedure concept. [...] A procedure which is capable of giving rise to block instances which survive its call will be known as a class; and the instances will be known as objects of that class. [...] A call of a class generates a new object of that class. Ole-Johan Dahl and C A R Hoare "Hierarchical Program Structures"
  • 70. 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. http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg03277.html