Tagged articles
3 articles
Page 1 of 1
Liangxu Linux
Liangxu Linux
Jan 5, 2025 · Fundamentals

Mastering the C++ this Pointer: Usage, Secrets, and Common Pitfalls

This article explains the C++ this pointer, covering its role as a constant pointer to the current object, how it accesses members, resolves name conflicts, enables method chaining, and the way the compiler passes it implicitly, while also noting its limitations in static and global contexts.

C++const pointermember functions
0 likes · 9 min read
Mastering the C++ this Pointer: Usage, Secrets, and Common Pitfalls
Programmer DD
Programmer DD
Mar 30, 2023 · Backend Development

Mastering Lombok @Accessors: Fluent, Chain, and Prefix Explained

Learn how Lombok's @Accessors annotation works by exploring its source code and understanding the three key attributes—fluent, chain, and prefix—so you can control getter and setter generation, customize method naming, and enable method chaining in your Java classes.

Fluent APIJavaLombok
0 likes · 4 min read
Mastering Lombok @Accessors: Fluent, Chain, and Prefix Explained
Cognitive Technology Team
Cognitive Technology Team
Apr 25, 2022 · Backend Development

Two Ways to Instantiate org.apache.ibatis.jdbc.SQL in MyBatis

This article explains two techniques for creating an org.apache.ibatis.jdbc.SQL object in MyBatis—using an anonymous inner class with an initializer block and using method‑chaining builder style—provides code examples, explains the underlying Java syntax, and summarizes their differences.

Builder PatternJavaMyBatis
0 likes · 4 min read
Two Ways to Instantiate org.apache.ibatis.jdbc.SQL in MyBatis