Chapter 3 array
catalogue
1, Concept of array (including some shortcut key usage)
2, Two dimensional array
III. Arrays tools
4, Array exception
1, Concept of array (including some shortcut key usage)
A collection of multiple data of the same type arranged in a certain order
1. Characteristics of array: 1) orderly arrangement 2) the array is a varia ...
Posted by Ekano on Sat, 26 Feb 2022 08:59:25 +0100
Java EE core [Shell foundation]
1. What is Shell
Shell is a command line interpreter. It is a black window. When we issue some commands to Linux, Shell translates these commands into the actions that kernel can understand, then calls the kernel, operates the hardware, completes the operation, and then translates the signals into adult understandable forms.
Shell is also a p ...
Posted by balkan7 on Sat, 26 Feb 2022 08:48:50 +0100
Ali II: how to solve the problem of a large number of timeout of external interfaces, dragging down the whole system and causing an avalanche? Fuse
Hello, everyone~
Internet plus era, business digitization has spread to every industry you can think of. There are more and more business functions and marketing methods, and the system is more and more complex.
In the face of increasingly complex business systems, the brain is less and less used
So smart people put forward the design idea ...
Posted by aouriques on Sat, 26 Feb 2022 08:43:43 +0100
Object oriented - creation and constructor of classes and objects
Process oriented & object oriented
Process oriented thought
The steps are clear and simple. What to do in the first step and what to do in the second stepFacing the process, it is suitable to deal with some relatively simple problems Object oriented thought
Birds of a feather flock together in a classified thinking mode. When thinkin ...
Posted by eternalprophet on Sat, 26 Feb 2022 08:23:03 +0100
[spring] spring integrates mybatis
1, Gossip
The weekend is coming again. Today, finish the spring blog, and then start the review of mybatis. I read it in July last year. If I don't write a blog, I'll soon forget it. Ha ha
2, Review mybatis and introduce integration methods
1. mybatis review
mybatis has written a simple example before. You can take a look at the previous bl ...
Posted by adhi_nugraha on Sat, 26 Feb 2022 08:00:51 +0100
Actual combat of microservice architecture development: the difference between fusing and degradation and how to integrate Hystrix
Difference between fusing and degradation
Many developers will be confused about the difference between fusing and downgrade. The similarities and differences between the two are summarized below.
Similarities between fusing and degradation
Service degradation and service fusing are similar from some angles.
·Same purpose. Both are t ...
Posted by Spaceboy on Sat, 26 Feb 2022 07:41:34 +0100
Filter (super detailed)
Statement: This article is the notes sorted out according to the blogger's learning content. It is only used for exchange learning. If you need to watch the video, please move to: http://www.atguigu.com/
1.Filter ? What is a filter
Filter filter is one of the three major components of Java Web. The three components are: Servlet program, List ...
Posted by reddevil on Sat, 26 Feb 2022 07:10:57 +0100
java multithreaded communication (mutual wake-up, circular printing) wait,notify cases and possible program blocking problems of false wake-up
1. Circular printing
public class OutWord {
private String word = "output A";
public synchronized void outA() throws InterruptedException {
if (word.equals("B output")){
this.wait();
}
//Output word
System.out.println("word = " + word);
word="B output";
this.notify();
} ...
Posted by rockofaith on Sat, 26 Feb 2022 06:20:49 +0100
Six methods of Java statistical code execution time
In daily development, we often need to test the execution time of some code, but we don't want to use JMH( Java Microbbenchmark harness (Java micro benchmark suite) is such a heavy testing framework, so this paper summarizes some commonly used execution time statistics methods in Java, including the following 6 kinds in total, as shown in the f ...
Posted by dhodge on Sat, 26 Feb 2022 06:19:05 +0100
[fundamentals of Java language: 4 & 5 & 6 (constants & variables and data types & operators)]
4. constant
Constant: refers to the fixed data in the Java program.
classification
typemeaningData examplesinteger constant integerPositive and negative integersDecimal constantdecimalPositive and negative decimalscharacter constants Enclosed in single quotation marks, there is only one character and cannot be empty'word', 'a', '1'string con ...
Posted by dsartain on Sat, 26 Feb 2022 06:13:04 +0100