awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • trekhleb/learn-pythonالصورة الرمزية لـ trekhleb

    trekhleb/learn-python

    18,058عرض على GitHub↗

    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
    عرض على GitHub↗18,058
  • godotengine/godot-demo-projectsالصورة الرمزية لـ godotengine

    godotengine/godot-demo-projects

    8,250عرض على GitHub↗

    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
    عرض على GitHub↗8,250
  • wren-lang/wrenالصورة الرمزية لـ wren-lang

    wren-lang/wren

    8,043عرض على GitHub↗

    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
    عرض على GitHub↗8,043
  1. Home
  2. Software Engineering & Architecture
  3. Architectural Design Patterns
  4. Object-Oriented Foundations
  5. Object-Oriented Programming
  6. Instance State Management

استكشف الوسوم الفرعية

  • 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.