Andromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com to Programmer Humor@programming.devEnglish · 4 months agoHow programmers comment their codelemmy.dbzer0.comimagemessage-square88fedilinkarrow-up11.18Karrow-down16file-text
arrow-up11.18Karrow-down1imageHow programmers comment their codelemmy.dbzer0.comAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.com to Programmer Humor@programming.devEnglish · 4 months agomessage-square88fedilinkfile-text
minus-squareyetAnotherUser@discuss.tchncs.delinkfedilinkarrow-up61·4 months ago/* * Gets stupidFuckingInteger * * @returns stupidFuckingInteger */ public double getStupidFuckingInteger() { return stupidFuckingInteger; }
minus-squaremrpants@midwest.sociallinkfedilinkEnglisharrow-up25arrow-down4·edit-24 months agoThe lack of a return type declaration makes this sooo good.
minus-squareexpr@programming.devlinkfedilinkarrow-up25·edit-24 months agoIt has the return type declared to be double.
minus-squaremrpants@midwest.sociallinkfedilinkEnglisharrow-up14·4 months agoI cannot read. Even better.
minus-squareILikeBoobies@lemmy.calinkfedilinkarrow-up10·4 months agoMakes sense, people looking for int would find a double
minus-squareAdNecrias@lemmy.ptlinkfedilinkarrow-up3·4 months agoReminds me of a job I had where c# summaries were mandatory and people used a documentation generator just like that. /// Ages the Category. public int AgeCategory (…)
minus-squareschnurrito@discuss.tchncs.delinkfedilinkarrow-up1·4 months agoplenty of APIs in Java have documentation like that and it is worst when I read the documentation in order to find out the definition of the nouns and verbs used there and then it is just like that
/* * Gets stupidFuckingInteger * * @returns stupidFuckingInteger */ public double getStupidFuckingInteger() { return stupidFuckingInteger; }
The lack of a return type declaration makes this sooo good.
It has the return type declared to be
double
.I cannot read. Even better.
This being a double physically hurts
Makes sense, people looking for int would find a double
Reminds me of a job I had where c# summaries were mandatory and people used a documentation generator just like that.
/// Ages the Category. public int AgeCategory (…)
plenty of APIs in Java have documentation like that and it is worst when I read the documentation in order to find out the definition of the nouns and verbs used there and then it is just like that