Detailed explanation of Chapter 3 of Java programming thought summary notes
There is not much to summarize in this chapter, but you need to pay attention to the details, some of which are easy to forget.
Chapter 3
Table of Contents:
-
3.1 Simpler print statements
3.2 Using Java operators
3.3 Priority
3.4 Assignment
3.5 Arithmetic operators
3.6 Automatic increment and decrement
3.7 Relational operators
3.8 Logical operators
3.9 Direct constants
3.10 Bitwise operators
##3.11 Shift operators
3.12 Ternary operator if-else
- ##3.13 String operators + and +=
- 3.14 Common mistakes when using operators
- 3.18 Summary
The operators "=", "==" and "==" can operate on all objects.
3.4 Assignment
If the object uses c=d, then both c and d point to the object that only d originally pointed to.
#When t1 = t2 (alias phenomenon), then modifying t1 will also change t2, because t1 and t2 contain the same reference and point to the same object.
3.6 Automatic increment and decrement
3.7 Relational Operator The contents of the above two Integer objects are the same, but the references are different , and == and != compare object references (basic types directly compare values, without references). If you want to compare object contents, use the equals() method. Note: The default behavior of the equals() method is to compare references, so you must override the e quals() method in your new class, otherwise it will not appear the effect you want. Most Java class libraries override the equals() method so that the contents of objects can be compared. Examples are as follows: ##3.9 Direct constants Hexadecimal: Prefix 0x, Octal: Prefix 0, Binary has no direct representation of constants. Exponent counting method: 1.39e-43f means 1.39 * 10-43 e means "the power of 10". 3.10 Bitwise operators Bitwise operations The operand of the operator is a binary "bit" (bit). Java was originally designed to be embedded in a TV set-top box, so this bottom-level operation is still retained. But the operator is rarely used. 3.11 Shift operator The operand is a binary "bit" and can only be used to process integer types (Boolean types do not work). Negative numbers need to be converted to two’s complement first and then operated on. I won’t introduce them here. Shift left (n high bits of are discarded, and n bits of the lowest bit are filled with n bits of 0) The binary form of 11 is 1011. The binary form after 1111 = 44 is equivalent to the integer 11*2 n ##Shift right (n numbers in the low bits are moved out, and n zeros are added in the high bits)>>: The binary form of ##11 is 1011 11>>2 The binary form after 2 is 0010 So 11>>2 = 2 is equivalent to the integer 11/2 ## Unsigned right shift operator>>>: Regardless of positive or negative, n numbers are shifted to the low bits and n zeros are added to the high bitsNote: >>>), the result may not be correct result. They are first converted to int type, then right-shifted, and then truncated and assigned to the original type. In this case, a result of -1 may be obtained. The example is as follows: The assembly-level execution speed of bit operations is very fast, so during the interview you may ask: What is the most commonly used method in Java? What is the efficient way to calculate the value of 2 times 8? Answer: 2 ##,
#3.16 Java does not have sizeof Java does not require the sizeof() operator, because all data types have the same size in all machines, and there is no need to consider "transplantation" issues. Summary: Knowledge points that are too easy and often used do not appear in the notes. All appear. Might as well read the book again. I saw such a complaint on a certain software today When I saw the knowledge points in the second chapter of Java programming ideas, I immediately thought of them: When a variable is used as a member of a class, Java ensures that its default value is given to ensure that the basic type member variable is initialized (the initial value may not be your If you want, it's better to initialize it yourself). Note that the default initialization method does not apply to field variables that are not of a certain class. If you forget to initialize, Java will return an error to you during compilation. Stack: Located in general-purpose RAM (random access register), the Java compiler must know the size of all data stored in the stack ## and life cycle, the "stack pointer" moves downward to allocate new memory, and moves upward to release memory. The speed is second only to the register, where basic data types and references are stored. Local variables are allocated on the stack during runtime. They are large in amount and have a short life cycle. If the virtual machine initializes each local variable, it will be a big deal. A lot of overhead, but it's unsafe to use variables without initializing them to their default values. a = 15,++a、--a: System.out.printf("~output:" + a++); //~ output:15a = 15,a++、a--: System.out.printf("~output:" + ++a); // ~ output:16
The code is not intuitive.
The above is the detailed content of Detailed explanation of Chapter 3 of Java programming thought summary notes. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using Maven and Gradle for Java project management, build automation, and dependency resolution, comparing their approaches and optimization strategies.

The article discusses creating and using custom Java libraries (JAR files) with proper versioning and dependency management, using tools like Maven and Gradle.

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

The article discusses using JPA for object-relational mapping with advanced features like caching and lazy loading. It covers setup, entity mapping, and best practices for optimizing performance while highlighting potential pitfalls.[159 characters]

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

This article explains Java's Remote Method Invocation (RMI) for building distributed applications. It details interface definition, implementation, registry setup, and client-side invocation, addressing challenges like network issues and security.

This article details Java's socket API for network communication, covering client-server setup, data handling, and crucial considerations like resource management, error handling, and security. It also explores performance optimization techniques, i

This article details creating custom Java networking protocols. It covers protocol definition (data structure, framing, error handling, versioning), implementation (using sockets), data serialization, and best practices (efficiency, security, mainta


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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.