- Joined
- Nov 7, 2013
- Messages
- 82
I can only give an infarction.I have the same mod rights that I had before. Ban/delete/edit/etc
I can only give an infarction.I have the same mod rights that I had before. Ban/delete/edit/etc
Don't you have a "moderation tools" button in the lower right of the last post?I can only give an infarction.
Fuck knows who's what. Says "moderator" right under your name so I didn't assume you were a supermengHe's normal mod, only super mods as me and you can access the moderation tools. Was the same for me before I told Catalin.
Nope, nothing, nada, zilch, squat, nema, none, null, void, nimic, nica, nic.Don't you have a "moderation tools" button in the lower right of the last post?
I had super mod also, then it changed to moderator but kept the permissions.Fuck knows who's what. Says "moderator" right under your name so I didn't assume you were a supermeng
Start coding some small apps so you can see the concepts a bit clearer.Is OOP stupidly roundabout or is it just me
Is there like any reason to ever use the private keyword for nowStart coding some small apps so you can see the concepts a bit clearer.
It's always great to use the private keyword. Getters and setters allow for easier code debugging. When you'll get to writing bigger apps, you'll see that it's easier to just put a breakpoint in the setter and check where it is being called. Accessors are also useful for (you got it) limiting access but I think you've got that bit figured out by yourself.Is there like any reason to ever use the private keyword for now
english plsIt's always great to use the private keyword. Getters and setters allow for easier code debugging. When you'll get to writing bigger apps, you'll see that it's easier to just put a breakpoint in the setter and check where it is being called. Accessors are also useful for (you got it) limiting access but I think you've got that bit figured out by yourself.
*drools*Hold your horses bro I'm eating pizza
Usually "private" stands for use only within the scope of this class.Is there like any reason to ever use the private keyword for now
And why would I care if it's only available within the classUsually "private" stands for use only within the scope of this class.
EG: You have a class called DoMath that exposes a method called SumAll. You use a private variable such as:
private int mySum=0;
what's the purpose you may ask. Well calling the SumAll will expose a result, and the mySum variable will store that value, encapsulated within the class and being available only within that class.