Weekly Blog: Four Interesting Things I Encountered This Week
1. Avoiding Confusing File Names in VS Code
When writing C++ files in VS Code, I named a file first.c.cpp. After completing the program, I encountered errors during execution. After 30 minutes of troubleshooting, I discovered the issue lay in the file name:
The .c extension led the IDE to mistakenly identify it as a C program, causing VS Code to use gcc (the C compiler) instead of g++ (the C++ compiler) to compile my code.
Caption: How fool!
- Solution: In the tasks.json file, change the 'command' line from gcc to g++.
- Lesson learned: Use clear .cpp extensions for C++ files to avoid unnecessary confusion.
2. Java's Cross-Platform Design Philosophy
Java's design philosophy differs significantly from traditional compiled languages:
Traditional Compilation:
- Languages like C++ compile directly into machine code for specific platforms (e.g., Windows, Mac, Linux)
- The resulting executable files (.exe) can only run on the target platform
Java's Approach:
- The compiler generates intermediate code (bytecode)
- This bytecode can run on any platform with a Java Virtual Machine (JVM) installed
- The JVM is responsible for translating the bytecode into machine code for the current platform
This design achieves the goal of "Write Once, Run Anywhere," whereas C++ executables (.exe files) are limited to running on a single platform.
Advantages:The same program can run on different computers without modification
Disadvantages:The additional step in the process can make compilation slightly slower compared to traditional methods
Write once, Run anywhere
---------James GoslingCopy after login
3. Two Common Compilation Modes
- Debug mode is oriented towards debugging, with fewer optimizations. It's mainly used for debugging programs.
- Release mode is primarily used for generating the release version, focusing on optimization and only retaining basic debugging functionality.
4. Understanding Forced Type Casting from a Low-Level Perspective
Little Endian: The least significant byte is stored at the lowest address. This storage method emerged to facilitate CPU memory reading, which occurs from low to high addresses. Interestingly, this is opposite to humans typically write numbers.
For example:
Binary representation of 329933 is 00000000 00000101 00001000 11001101
Little Endian storage: 11001101 00001000 00000101 00000000
As we can see, Little Endian reverses the order of bytes in the binary representation. However, it's crucial to note that the bit order within each byte remains unchanged!
A Fun Game to Understand Forced Type Casting
My favorite experiment for introducing type casting!
# include <iostream> int main() { int a; int *p; a=329933; p=&a; char *q; q=(char*)p; printf("%d\n",*p); printf("%d\n",*q); }
Output:
329933 -51
I'm curious why it outputs -51?
Explanation
- (char*)&a points to the first byte of the int. The first byte 11001101is interpreted as a char.
- The highest bit 1 indicates a negative number, after two's complement conversion, we get -51 (those friends who are familiar with two's complement can verify if it indeed represents -51)
Is this a coincidence? Let's try two more examples
printf("%d\n",*(q+1)); printf("%d\n",*(q+2));
Try it:
- Try running the code mentioned above and observe the output.
- Consider why the second and third bytes produce such output. Feel free to discuss this in the comments section.
- Can you apply forced type casting to other data types? Give it a try!
Additional Info: Two's Complement
When performing forced type casting, (char)p will point to the address of the first byte of the four-byte int, which is 11001101.
The leftmost 1 represents the negative sign, indicating it's a negative number. After applying two's complement, we get: 0110011 (the last 7 bits)
(Note: For positive numbers, the two's complement is simply the binary representation of the decimal number. For negative numbers, the two's complement is obtained by inverting all bits except the leftmost (highest) bit, then adding 1 to the rightmost bit.)
Converting this to decimal gives us -51. Interesting, right?
Benefits of Two's Complement:
- It allows both positive and integer types to be calculated using only an adder, eliminating the need for a subtractor and simplifying hardware need.
- It provides a unique binary representation for zero. 10000000 doesn't represent -0, but -128, while 00000000 represents 0, not +0.
Many people wonder why it's -128. If you know the answer, feel free to share it in the comments section. This will not only help others but also help you organize your thoughts.
The above is the detailed content of Weekly Blog: Four Interesting Things I Encountered This Week. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.
