Tag

Bitwise Operations

0 views collected around this technical thread.

Cognitive Technology Team
Cognitive Technology Team
Mar 23, 2025 · Fundamentals

Swapping Two Variables in Java Without a Temporary Variable

This tutorial explains how to exchange the values of two Java variables without using a temporary variable, covering three techniques—arithmetic addition/subtraction, multiplication/division, and bitwise XOR—along with complete code examples, step‑by‑step explanations, output results, and discussion of each method’s advantages, limitations, and appropriate use cases.

ArithmeticBitwise OperationsJava
0 likes · 7 min read
Swapping Two Variables in Java Without a Temporary Variable
php中文网 Courses
php中文网 Courses
Nov 26, 2024 · Databases

Using Redis Bitmap Operations for Precise Statistics with PHP

This article explains Redis bitmap data structures, introduces the main bitmap commands (BITSET, BITGET, BITCOUNT), and provides a complete PHP example that demonstrates how to record user sign‑ins and count them efficiently using Redis bit operations.

BitMapBitwise OperationsNoSQL
0 likes · 5 min read
Using Redis Bitmap Operations for Precise Statistics with PHP
php中文网 Courses
php中文网 Courses
Jun 5, 2024 · Databases

Using Redis Bitmaps for Efficient User Sign‑in Statistics with PHP

This article explains Redis bitmap data structures, introduces common bitmap commands such as BITSET, BITGET, and BITCOUNT, and provides a complete PHP example that records user sign‑ins and calculates daily sign‑in counts using Redis bit operations.

BitMapBitwise OperationsDatabase
0 likes · 5 min read
Using Redis Bitmaps for Efficient User Sign‑in Statistics with PHP
JD Retail Technology
JD Retail Technology
May 26, 2023 · Databases

Overview of Database Evolution, Types, and Data Structure Design

This article traces the history of database development from early file systems to relational models, outlines major database categories such as hierarchical, relational, NoSQL, NewSQL, and columnar stores, and explores practical data structure designs like chain tables, bitwise operations, and circular queues for modern software engineering.

Bitwise OperationsData StructuresHashing
0 likes · 28 min read
Overview of Database Evolution, Types, and Data Structure Design
Baidu Geek Talk
Baidu Geek Talk
May 17, 2022 · Fundamentals

Understanding V8 Hidden Classes, Java Logical & Bit Operations, and Go type func()

The article explains V8 hidden classes and inline caches for faster property access, details Java’s logical versus bitwise operators and short‑circuit evaluation, and demonstrates Go’s first‑class function types such as type func() for flexible, reusable code patterns.

Bitwise OperationsGoJava
0 likes · 16 min read
Understanding V8 Hidden Classes, Java Logical & Bit Operations, and Go type func()
Code Ape Tech Column
Code Ape Tech Column
Oct 14, 2021 · Backend Development

Binary State Statistics with Redis Bitmap: Efficient User Login and Sign‑In Tracking

This article explains how to use Redis Bitmap for binary state statistics such as user login status and daily sign‑in tracking, comparing memory usage with String types, and demonstrates practical commands like SETBIT, GETBIT, BITCOUNT, BITPOS, and BITOP for massive user datasets.

BitMapBitwise OperationsData Structures
0 likes · 10 min read
Binary State Statistics with Redis Bitmap: Efficient User Login and Sign‑In Tracking
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Aug 25, 2020 · Fundamentals

Understanding Bitwise Operations in Java: Uses, Representations, and the Seven Operators

This article explains the purpose and practical benefits of bitwise operations in Java, describes signed number representations (sign‑magnitude, ones' complement, two's complement), shows how bits can optimize time and space, and details the seven common bitwise operators with examples and a reference table.

Bitwise OperationsJavaalgorithm fundamentals
0 likes · 13 min read
Understanding Bitwise Operations in Java: Uses, Representations, and the Seven Operators
Hujiang Technology
Hujiang Technology
Aug 7, 2017 · Frontend Development

Reverse Engineering a One‑Line JavaScript Animation: Step‑by‑Step Explanation

This article walks through the reverse‑engineering of a compact JavaScript one‑liner that draws a patterned image, refactors it into readable modules, explains each transformation—including variable renaming, loop conversion, ternary expansion, bitwise operations, and switch‑case replacement—while illustrating the underlying math with graphs and code snippets.

Bitwise OperationsJavaScriptReverse Engineering
0 likes · 18 min read
Reverse Engineering a One‑Line JavaScript Animation: Step‑by‑Step Explanation