Tagged articles

generic-methods

8 articles · Page 1 of 1
TonyBai
TonyBai
Jun 24, 2026 · Backend Development

Go 1.27 Preview: Generic Methods Land, Built‑in UUID in the Standard Library

The upcoming Go 1.27 release brings a suite of hard‑core upgrades—including the long‑awaited generic methods, deep struct‑literal field selectors, size‑specialized memory allocation, a production‑ready goroutine‑leak profiler, modernized toolchain commands, a new encoding/json/v2 package, built‑in UUID support, and post‑quantum cryptography—signaling a major leap for high‑performance, secure backend development.

GoGo 1.27Performance
0 likes · 15 min read
Go 1.27 Preview: Generic Methods Land, Built‑in UUID in the Standard Library
Golang Shines
Golang Shines
Jun 21, 2026 · Fundamentals

Go Founder Announces Generic Methods – What It Means for Your Code

The article recounts a developer’s struggle with missing generic methods in Go, explains the language team’s proposal to allow type‑parameterized methods while forbidding their use in interfaces, illustrates the feature with practical code examples, and discusses the remaining trade‑offs such as lack of reflection support.

GoInterfacesReflection
0 likes · 13 min read
Go Founder Announces Generic Methods – What It Means for Your Code
21CTO
21CTO
Mar 7, 2026 · Fundamentals

Why Go Finally Embraced Generic Methods—and What It Means for Developers

The Go team has approved generic methods, overturning a long‑standing stance, while keeping full backward compatibility, sparking developer excitement, revealing lingering limitations with generic interfaces, and highlighting survey‑driven demand for additional language features such as enums and error handling.

generic-methodsgenericsprogramming language design
0 likes · 5 min read
Why Go Finally Embraced Generic Methods—and What It Means for Developers
TonyBai
TonyBai
Jan 24, 2026 · Fundamentals

After Four Years of Go Generics, Generic Methods Are Finally Arriving

Four years after Go introduced generics, the language’s core team has proposed adding generic methods, a change that resolves the long‑standing asymmetry between generic functions and types, improves API fluency, and reshapes code organization while preserving backward compatibility, though interface support remains limited.

API designGoInterfaces
0 likes · 12 min read
After Four Years of Go Generics, Generic Methods Are Finally Arriving
FunTester
FunTester
Dec 17, 2023 · Fundamentals

Understanding Java Generics: Concepts, Benefits, and Practical Examples

This article explains Java generics, covering type parameters, generic classes and interfaces, bounded types, wildcards, and generic methods, while highlighting benefits such as type safety, code reuse, readability, and performance, and provides multiple code examples demonstrating generic usage across different data types.

Code ReuseJavageneric-methods
0 likes · 15 min read
Understanding Java Generics: Concepts, Benefits, and Practical Examples
FunTester
FunTester
Sep 18, 2020 · Backend Development

How to Tackle Common Groovy Pitfalls in IntelliJ IDEA

This guide explains why IntelliJ IDEA often misreports Groovy syntax, shows the three ways to access object properties, demonstrates generic method definitions, and clarifies the behavior of the 'it' keyword in nested loops, providing concrete code examples and practical work‑arounds.

GroovyIDE errorsIntelliJ IDEA
0 likes · 6 min read
How to Tackle Common Groovy Pitfalls in IntelliJ IDEA
Java Captain
Java Captain
May 29, 2018 · Fundamentals

Understanding Java Generics: Concepts, Usage, and Practical Examples

This article explains the importance of Java generics, demonstrates common pitfalls with raw collections, shows how generics provide compile‑time type safety, and covers generic classes, interfaces, wildcards, methods, bounds, and array usage with clear code examples.

CollectionsJavaProgramming Fundamentals
0 likes · 21 min read
Understanding Java Generics: Concepts, Usage, and Practical Examples