369
codeStyle (lemmy.world)
you are viewing a single comment's thread
view the rest of the comments
[-] 520@kbin.social -1 points 6 months ago

So this looks like it's based in Java code.

A public class means that any bit of Java code, including that injected by an attacker, can see and mess with the contents of that class.

A private class, in contrast, means that other bits of Java code are restricted to running the class's predefined functions.

In theory it is supposed to help with the security of the data. In practice if an attacker gets to this point, you've got much bigger issues.

[-] po-lina-ergi@kbin.social 5 points 6 months ago* (last edited 6 months ago)

Private Vs public has nothing to do with security

If people can execute arbitrary code in your app, they can already read your memory, and even if they couldn't they could use java reflection to just turn off the private modifier

Accessibility modifiers are to do with maintainability. If you have internal implementation logic that should be hidden from a consumer you don't want that consumer to have to know about things they shouldn't be changing anyway.

The comic is just about how classnames in java should be in pascal case

this post was submitted on 01 Mar 2024
369 points (93.2% liked)

Programmer Humor

32054 readers
1687 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS