is private access modifier makes better performance than public?
i ask this because i don’t know which one of my guesses are right?
GUESS 1 Initializes without access ways. Public = it creates access ways to be public. Private = it doesn’t creates access ways so it is private.
GUESS 2 Initializes with access ways. Public = it doesn’t block access ways so it is public. Private = it blocks access ways to be private.
And of course, the main question, is that makes a “minimal” performance difference? I don’t want to make my public variables or functions private if it is for nothing…