Hellfire103 to Programmer Humor@lemmy.mlEnglish · 17 hours agoTIFU by not using objects in my object-oriented programming courseworkimagemessage-square16fedilinkarrow-up153arrow-down17cross-posted to: [email protected][email protected]
arrow-up146arrow-down1imageTIFU by not using objects in my object-oriented programming courseworkHellfire103 to Programmer Humor@lemmy.mlEnglish · 17 hours agomessage-square16fedilinkcross-posted to: [email protected][email protected]
minus-squarewhats_all_this_then@lemmy.worldlinkfedilinkarrow-up4·edit-23 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();
minus-squarewhats_all_this_then@lemmy.worldlinkfedilinkarrow-up5·3 hours agoPython port: from ballsucker import suck suck()
All 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()