• Deckweiss@lemmy.world
        link
        fedilink
        arrow-up
        14
        arrow-down
        1
        ·
        edit-2
        4 months ago

        Ah well… Guess I’m lucky that it doesn’t bother me.

        I use different languages with different style guides and my IDE autoformats everything properly with the click of a button so I don’t think about naming strategies at all.

    • RustyNova@lemmy.world
      link
      fedilink
      arrow-up
      36
      ·
      4 months ago

      Classes often have camelCase or PascalCase. Snake cases often are for variables or functions.

      I don’t remember the java standards, but it’s enough to get it

      • marcos@lemmy.world
        link
        fedilink
        arrow-up
        9
        ·
        4 months ago

        The Java standard is ClassName, variableName, FINAL_VALUE_NAME.

        It’s derived from a popular C++ standard. (But C++ has many for you to pick.)

        Python is the one that likes snake_case, but it’s for variables, as you said. Classes are still PascalCase.

      • bassomitron@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        1
        ·
        edit-2
        4 months ago

        In college and workplace, all java projects I ever worked with used camelCase. Whether that’s the official stance of Java or not, I don’t recall.

        • Baut [she/her] auf.@lemmy.blahaj.zone
          link
          fedilink
          arrow-up
          8
          ·
          edit-2
          4 months ago

          But also classes? In Java, I normally see camelcase (objects, variables, functions, …) except for class definitions, which are PascalCase.
          The package itself often is snakecase though iirc?

            • OR3X@lemm.ee
              cake
              link
              fedilink
              arrow-up
              1
              ·
              4 months ago

              Same I was taught. Think it’s official. Professor was a stickler for following official rules so I doubt he would deviate.

      • Cosmic Cleric@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        4 months ago

        When you’re telling a joke to a bunch of computer programmer nerds, you got to tell them what programming language the joke is in, or else it just falls flat.

        • RustyNova@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          4 months ago

          Always type the name of the language after opening your joke block. If your language is known enough, you may have syntax highlighting as well!

    • 520@kbin.social
      link
      fedilink
      arrow-up
      1
      arrow-down
      2
      ·
      4 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
        link
        fedilink
        arrow-up
        5
        ·
        edit-2
        4 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