whats_all_this_then@lemmy.worldtoProgrammer Humor@lemmy.ml•TIFU by not using objects in my object-oriented programming coursework
5·
6 hours agoAll of this is okay, but it’s not production ready. This is what real production code looks like:
SuckableFactory suckableFactory = new SuckableFactory();
Suckable balls = suckableFactory
.setShape(SuckableShapes.round)
.setCount(2)
.create();
SuctionProvider mouth = SuctionProvider.getInstance();
SuckerFactory suckerFactory = new SuckerFactory();
Sucker sucker = SuckerFactory.create():
sucker.setSuctionProvider(mouth);
sucker.setSuckable(balls);
sucker.setIntensity(SuckerSuctionIntensities.medium);
sucker.suckSuckable();
Python port:
from ballsucker import suck suck()