10 Matching Annotations
  1. Jan 2022
  2. Oct 2021
    1. Hi, I just got my Obsidian-Hyphothesis plugin approved and now listed in the Community Plugin. Feel free to check it out. Any feedback would be greatly appreciated as well.

      Just testing if I can see this in your new plugin, because I suspect annotations on local pdf files cannot be synced

    1. Garbage-Collectible Heap

      The place where all objects are stored is called garbage collection heap and allocates the space required for those. When objects become useless, they become egligible for garbage collection. When in need of memory, the garbage collector frees up space by deleting egligible objects.

    2. the dot operator (.) to set the instance variables to a specific value. The MovieTestDrive class also invokes (calls) a method on one of the objects.

      The dot operator is used in order to set and invoke methods.

    3. They represent an object’s state (the data), and can have unique values for each object of that type.

      The data the object knows about itself is shown as instance variable that can have unique instantiated values for every single object.

    4. The subclasses inherit the methods of the superclass. In other words, if the Shape class has the functionality, then the subclasses automatically get that same functionality.

      Siperclasses pass on methods to the subclass(es). For example the common methods of the triangle, square, circle (due to the fact that they are shapes) can be found in the Shape class.and has all subclasses linked to it to inherit the method and avoid necessary copies of the same method among multiple classes.

    5. If I had a dime for every time I’ve heard that one

      OOP has the advantage of long-term efficiency for long-term projects since it's readability and proneness to change of features of a program does imply better maintainability than procedural programming

    Annotators