awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesInstance State Management

Manipulating data attributes unique to a specific object instance using reference parameters.

Distinct from Object-Oriented Programming: Focuses on the practical manipulation of instance variables (e.g., using 'self') rather than the high-level paradigm of OOP.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Instance State Management. Refine with filters or upvote what's useful.

Awesome Instance State Management GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • trekhleb/learn-pythonAvatar von trekhleb

    trekhleb/learn-python

    18,058Auf GitHub ansehen↗

    This project is an educational resource designed for learning the Python programming language. It serves as a tutorial repository and programming guide, providing a collection of annotated scripts, code examples, and cheatsheets to help users master syntax and core fundamentals. The resource focuses on moving from basic language syntax to advanced implementation, with a particular emphasis on object-oriented programming, the use of the Python standard library, and scripting automation for business workflows. The content covers a broad range of programming capabilities, including control flow

    Explains how to use instance methods and reference parameters to manage the state of specific objects.

    Pythonlearninglearning-by-doinglearning-python
    Auf GitHub ansehen↗18,058
  • godotengine/godot-demo-projectsAvatar von godotengine

    godotengine/godot-demo-projects

    8,250Auf GitHub ansehen↗

    This repository is a comprehensive collection of functional 2D and 3D demo projects and implementation samples for the Godot Game Engine. It serves as an interactive tutorial and reference library, providing a working codebase to demonstrate how to apply engine features in real-world scenarios. The collection focuses on practical implementation guides, covering a wide array of technical capabilities from basic engine fundamentals to advanced rendering and scripting techniques. It allows users to study the application of node-based composition, asset pipelines, and game logic through direct ex

    Implements object instance management allowing individual property overrides for template-based game objects.

    GDScript
    Auf GitHub ansehen↗8,250
  • wren-lang/wrenAvatar von wren-lang

    wren-lang/wren

    8,043Auf GitHub ansehen↗

    Wren is an embeddable, class-based scripting language and bytecode interpreter. It provides a dependency-free virtual machine designed for integrating dynamic script execution into host applications via a C API. The language is centered on a modern object-oriented model featuring inheritance, method overloading, and first-class functions. It utilizes a concurrent fiber runtime to manage lightweight, cooperatively scheduled execution paths without relying on operating system threads. The project includes a comprehensive suite of object-oriented primitives, closure-based state capture, and a m

    Stores data within objects using implicitly declared fields and static fields for class-level shared state.

    Wrenbytecodecfibers
    Auf GitHub ansehen↗8,043
  1. Home
  2. Software Engineering & Architecture
  3. Architectural Design Patterns
  4. Object-Oriented Foundations
  5. Object-Oriented Programming
  6. Instance State Management

Unter-Tags erkunden

  • Static and Instance Field ManagementManages both object-specific instance fields and class-level shared static fields. **Distinct from Instance State Management:** Covers both instance-level and static-level state management within the class system.
  • Template Instance OverridingManaging copies of template objects with unique property overrides while maintaining global links. **Distinct from Instance State Management:** Focuses on template-based property overriding rather than general object instance state management.