Tag

static

1 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Sep 13, 2024 · Backend Development

Understanding PHP Static Members: self::, parent::, and static::

This article explains PHP static members, how self::, parent::, and static:: differ in inheritance contexts, when to use static members, and provides clear code examples illustrating their distinct behaviors for method and property access.

OOPPHPinheritance
0 likes · 7 min read
Understanding PHP Static Members: self::, parent::, and static::
Architecture Digest
Architecture Digest
Oct 19, 2023 · Fundamentals

Understanding Java Serialization, serialVersionUID, and Their Practical Implications

This article explains what serialization and deserialization are, why Java classes must implement the Serializable interface, the role of serialVersionUID in version compatibility, and demonstrates with code how transient and static fields behave during object serialization and deserialization.

JavaObjectIOSerializable
0 likes · 9 min read
Understanding Java Serialization, serialVersionUID, and Their Practical Implications
php中文网 Courses
php中文网 Courses
Jun 29, 2023 · Backend Development

Understanding the static Keyword in PHP: Properties, Methods, and Use Cases

This article explains PHP's static keyword, covering static properties and methods, memory management, common use cases such as utility functions and the singleton pattern, and important considerations for visibility and inheritance, accompanied by clear code examples.

OOPPHPbackend
0 likes · 8 min read
Understanding the static Keyword in PHP: Properties, Methods, and Use Cases
IT Architects Alliance
IT Architects Alliance
Aug 21, 2022 · Fundamentals

Understanding Java Serialization, Deserialization, and serialVersionUID

This article explains Java object serialization and deserialization, why implementing Serializable and defining a serialVersionUID are necessary for persistence and network transfer, and demonstrates the impact of transient and static fields with complete code examples.

ExampleJavaSerialization
0 likes · 10 min read
Understanding Java Serialization, Deserialization, and serialVersionUID
Selected Java Interview Questions
Selected Java Interview Questions
Dec 30, 2021 · Fundamentals

Understanding Java's main Method: Overloading, Invocation, and Inheritance

This article explains the special nature of Java's main method, detailing its required signature, the role of each modifier, and demonstrates that the main method can be overloaded, invoked by other methods, and even inherited by subclasses, with practical code examples.

JavaMain methodOverloading
0 likes · 6 min read
Understanding Java's main Method: Overloading, Invocation, and Inheritance
Sohu Tech Products
Sohu Tech Products
Dec 8, 2021 · Mobile Development

Understanding UIKIT_EXTERN and Macro Usage in iOS Development

This article explains the purpose, syntax, and underlying principles of UIKIT_EXTERN and related macros such as extern, static, and const in iOS, demonstrates how __attribute__ and visibility modifiers affect symbol linkage, and outlines practical scenarios and extensions for safer, more efficient code across dynamic libraries.

MacrosUIKIT_EXTERNVisibility
0 likes · 11 min read
Understanding UIKIT_EXTERN and Macro Usage in iOS Development
php中文网 Courses
php中文网 Courses
Nov 6, 2020 · Backend Development

Understanding and Implementing the Facade Pattern in ThinkPHP 5.1

This article explains the Facade feature introduced in ThinkPHP 5.1, demonstrates how to use it for static‑style method calls, shows step‑by‑step code examples, discusses the underlying __callStatic and createFacade mechanisms, and provides best‑practice recommendations for managing multiple facades in complex projects.

Design PatternPHPThinkPHP
0 likes · 11 min read
Understanding and Implementing the Facade Pattern in ThinkPHP 5.1
Selected Java Interview Questions
Selected Java Interview Questions
May 13, 2020 · Fundamentals

Understanding Java Serialization and serialVersionUID: Concepts, Usage, and Common Pitfalls

This article explains Java serialization and deserialization, the role of the Serializable interface and serialVersionUID, demonstrates how to implement and test them with code examples, and discusses related features such as transient and static fields, providing practical insights for Java developers.

JavaSerializableSerialization
0 likes · 11 min read
Understanding Java Serialization and serialVersionUID: Concepts, Usage, and Common Pitfalls
Selected Java Interview Questions
Selected Java Interview Questions
Mar 1, 2020 · Backend Development

Understanding Java Serialization: Concepts, Implementation, and Common Pitfalls

This article explains Java serialization and deserialization concepts, when to use them, how to implement the Serializable interface with example code, and discusses the effects of transient, static fields, and serialVersionUID on object persistence and compatibility.

SerializableSerializationjava-io
0 likes · 11 min read
Understanding Java Serialization: Concepts, Implementation, and Common Pitfalls
Java Captain
Java Captain
Apr 18, 2018 · Fundamentals

Understanding Static Fields, Static Methods, and the final Keyword in Java

This article explains Java's static data members and methods, demonstrates how they are declared and accessed through a Human class example, shows how object constructors can modify static fields, and clarifies the purpose and usage of the final keyword in Java programming.

JavaOOPclass fields
0 likes · 7 min read
Understanding Static Fields, Static Methods, and the final Keyword in Java