In AI — Object Oriented Principles Still Rules

Jan Verdier
3 min read6 days ago

--

Using AI for programming is great and can improve your productivity by 100x! BUT understanding OOP is still the one unique skill you must lean and understand to get the best out of AI.

I am one of the “lucky ones”, I learned it the hard way with C and later C++ studying (I am Danish and Bjarne Stroustrup and his C++ books was mandatory!) and I later programmed in Smalltalk for several years.

Smalltalk is considered one of the purest OO languages that ever existed.

1. Everything is an Object

• Integers? Objects.

• Classes? Objects.

• Control structures (like loops and conditionals)? Also objects.

2. Message Passing

• All computation in Smalltalk is performed by sending messages to objects, even arithmetic

3. Uniform Syntax

• The syntax is minimal and highly uniform. There’s no special syntax for control flow or built-in types — it’s all handled through message passing.

4. Reflection and Metaprogramming

• Smalltalk systems are highly introspective — you can inspect and modify the environment, classes, and even the compiler itself, all at runtime.

Internal Reflection — maybe thats why I dont like SQL, way too primitive??

Here is a (fun) OO example in Smalltalk

Class Person

Inherited Class

Transcript show: name, ‘ has $’, money printString; cr.

  • Honest Merge has $120
  • The Best Deal Ever has $1200

When using AI you must be really really careful if you dont understand these principles and using them actively in your code.

Here is a real Claude interaction

Start of solution
Extensive overcomplicated Claude solution
Claude loves it!
Questioning Claude
Claude getting one step closer
Claude Analysis
Still questioning Claude instead of writing SQL (I dont like SQL)
Claude
Still not getting it
Asking again
Claude getting there
Better but not optimal
Yes!

So in the end, we added ONE new internal method in the ProductService Class

New internal Class method in ProductService Class
One line of code!

One line of code!

Not understanding OO, and you would probably have gone for the first recommendation from Claude which would have increased the technical debt sustantially and added much more complexity.

This was a long post, but if you are this far, send a connect request comment with an answer to “Guess who Promotes the Best Deal Ever!” and I will connect :-)

https://www.linkedin.com/in/janverdier/

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Jan Verdier
Jan Verdier

Written by Jan Verdier

Founder of A Cloud Frontier, born before there was something called the internet.

No responses yet

Write a response