C++ decltype type derivation
reference
1,http://c.biancheng.net/view/7151.html
Both auto and decltype keywords can automatically deduce the type of variable, but their usage is different:
auto varname = value;
decltype(exp) varname = value;
Where varname represents the variable name, value represents the value assigned to the variable, and exp represents an expression ...
Posted by Unipus on Sun, 27 Feb 2022 01:34:27 +0100
First knowledge of Java -- logical control structure in Java
catalogue
1, Sequential structure
2, Branching structure
π if statement
π switch statement
3, Cyclic structure
π while loop
πbreak
πcontinue
π for loop
π do...while() loop
4, Input and output in Java
π Output to console
π Format character
π Input from keyboard
V. summary
π Brief description:
Because the content ...
Posted by alex_bg on Sun, 27 Feb 2022 00:08:25 +0100
Generation and Call of Webservice Interface
Recent projects have to dock a web service-style interface, because this type has never been docked before, so this time I have looked up some materials to learn
1. Brief introduction of Webservice
WebService is a remote invocation technology that spans programming languages and operating system platforms. Through the standard communication p ...
Posted by Bobulous on Sat, 26 Feb 2022 18:42:40 +0100
Java basic syntax
Basic Java syntax (2)
The wood that embraces is born at the slightest; The nine storey platform starts from the tired soil; A journey of a thousand miles begins with a single stepββ Tao Te Ching
10, Scanner class (user interaction data type)
From Java 5 to Java util. Scanner is a package. We can get user input through s ...
Posted by scottbarry on Sat, 26 Feb 2022 16:57:59 +0100
018 disk IO performance monitoring / pressure measurement tools (sar, iotop, fio, iostat)
1. Use the SAR command to view the current disk IO read / writesar (System Activity Reporter system activity report) is one of the most comprehensive system performance analysis tools on Linux. It can report system activities from many aspects, including file reading and writing, system call usage, disk I/O, CPU efficiency, memory usage, proces ...
Posted by cape on Sat, 26 Feb 2022 15:46:46 +0100
Elementary C language - pointer
catalogue
I What is the pointer
II Pointer and pointer type
3. Field pointer
4. Pointer operation
5. Pointer and array
6. Secondary pointer
7. Pointer array
I What is the pointer
Understand pointer
1. Pointer is the number of the smallest unit in memory, that is, the address2. The pointer in spoken English usually refers to the p ...
Posted by roldahayes on Sat, 26 Feb 2022 15:41:28 +0100
Java file streaming and I/O
Java file streaming and I/O
file
concept
A file is where data is stored.File stream: files are operated in the form of stream in the program.Stream: the path of data between the data source (file) and the program (memory)Input stream: the path of data from data source (file) to program (memory)Output stream: the path of data from program (me ...
Posted by JamesyBHOY on Sat, 26 Feb 2022 14:10:54 +0100
Elementary C language - array
catalogue
Creation of one-dimensional array
Initialization of one-dimensional array
Use of one-dimensional array
Storage of one-dimensional array in memory
Creation of two-dimensional array
Initialization of two-dimensional array
Use of two-dimensional arrays
Storage of two-dimensional array in memory
Array out of bounds
Array as fu ...
Posted by spetsacdc on Sat, 26 Feb 2022 13:13:52 +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
[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