Hellfire103 to Programmer Humor@programming.devEnglish · 1 month agoTIFU by not using objects in my object-oriented programming courseworkimagemessage-square29fedilinkarrow-up1104arrow-down15cross-posted to: [email protected][email protected]
arrow-up199arrow-down1imageTIFU by not using objects in my object-oriented programming courseworkHellfire103 to Programmer Humor@programming.devEnglish · 1 month agomessage-square29fedilinkcross-posted to: [email protected][email protected]
minus-squareschema@lemmy.worldlinkfedilinkarrow-up3·1 month agoIs the class declared static? I assume the “…ic class Answer07” at the top stands for “public class Answer07”. I don’t think java supports top level static classes (it does have nested static classes, though).
minus-squarelad@programming.devlinkfedilinkEnglisharrow-up1·1 month agoIt looks like exactly 4 characters are missing, so public and static would fit, but I never saw static instead of public static, so I think you’re right. On the other hand, I don’t use Java anymore and couldn’t be bothered about such details
Is the class declared static? I assume the “…ic class Answer07” at the top stands for “public class Answer07”.
I don’t think java supports top level static classes (it does have nested static classes, though).
It looks like exactly 4 characters are missing, so
public
andstatic
would fit, but I never sawstatic
instead ofpublic static
, so I think you’re right. On the other hand, I don’t use Java anymore and couldn’t be bothered about such details