Hellfire103 to Programmer Humor@lemmy.mlEnglish • 7 days agoTIFU by not using objects in my object-oriented programming courseworklemmy.caimagemessage-square23fedilinkarrow-up178arrow-down111cross-posted to: programmer_humor@programming.devtifu@lemmy.world
arrow-up167arrow-down1imageTIFU by not using objects in my object-oriented programming courseworklemmy.caHellfire103 to Programmer Humor@lemmy.mlEnglish • 7 days agomessage-square23fedilinkcross-posted to: programmer_humor@programming.devtifu@lemmy.world
minus-square@RagingToad@feddit.nllinkfedilink5•7 days agoDon’t you need to declare new Balls() first? Or do you suck() Balls static?
minus-squarexigoilinkEnglish9•edit-26 days agoBallsFactory ballsFactory = new BallsFactory(); ballsFactory.setSuckable(true); Balls balls = ballsFactory.create();
minus-square@whats_all_this_then@lemmy.worldlinkfedilink9•edit-26 days 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-square@whats_all_this_then@lemmy.worldlinkfedilink13•6 days agoPython port: from ballsucker import suck suck()
minus-square@luciferofastora@lemmy.ziplinkfedilink2•6 days agoActually, it would be OOP.suck(ddplf.getBalls())
Balls.suck() is the correct syntax.
Don’t you need to declare new Balls() first? Or do you suck() Balls static?
BallsFactory ballsFactory = new BallsFactory(); ballsFactory.setSuckable(true); Balls balls = ballsFactory.create();
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()
Or I didn’t using the correct naming convention!
Actually, it would be
OOP.suck(ddplf.getBalls())