Java basics syntax

Java basic syntax notes Comments will not be executed ​ 1. Single line notes: notes one line of text// ​ 2. Multiline comment: comment a paragraph of text / **/ ​ 3. Document comments: / * **/ identifier ​ 1. Identifier: the name used in user programming. Class name, variable name and method name are all called identifiers ​ 2. Naming ...

Posted by tacojohn on Fri, 21 Jan 2022 07:55:36 +0100

[Linux] deeply understand Shell usage, from getting started to mastering

I Shell background 1.1 GNU plan Tips: The GNU Project is a free software, mass collaboration project that Richard Stallman announced on September 27, 1983. Its goal is to give computer users freedom and control in their use of their computers and computing devices by collaboratively developing and publishing software that gives everyon ...

Posted by John_wilson on Thu, 20 Jan 2022 01:28:05 +0100

2021-07-10 basic knowledge of standard C language

Introduction to C language BCPL->newB->C->UNIX->Minix->linux->gcc C Language was born in 1970-1973 In 2011, in Ken.Thompson and Dennis.Rich( c It is written under the guidance of the father of language and belongs to the United States Bell Labs. C Language is specially designed to write the operating system, so it is nat ...

Posted by jschofield on Wed, 19 Jan 2022 21:21:18 +0100

Introduction training for beginners of Niuke network programming 2

BC11 student basic information input and output describe Input a student's student number and 3 subjects (C language, mathematics, English) scores in turn, and output the student's student number and 3 subjects' scores on the screen (Note: the scores shall be rounded and 2 decimal places shall be reserved). Data range: student number mee ...

Posted by Popcorn on Wed, 19 Jan 2022 13:40:28 +0100

What about MyBatis annotation development of SSM / MyBatis annotation development in IDEA? How to use the MyBatis annotation?

Write before: Continue to record your MyBatis learning journey. If you don't understand it, it is recommended to read it first Previous blogs , detailed codes can be found in My Gitee warehouse SSM learning Clone download learn to use! 3.11 annotation development 3.11.1 notes MyBatis can also be developed with annotations to reduce the writi ...

Posted by charlieholder on Wed, 19 Jan 2022 12:05:18 +0100

Core principles of spring cloud RPC: RxJava responsive programming framework, transformation operator

Conversion operator This section introduces three conversion operators of RxJava: map operator, flatMap operator and scan operator. map operator The map operator accepts a conversion function, applies the conversion function to each element in the message flow ejected by Observable, and the converted result pops up from the message flow. The ...

Posted by diddy1234 on Tue, 18 Jan 2022 19:18:56 +0100

Python anti crawling textbook Level tutorial: car home, font anti crawling decryption!

Tell me about this website Auto home is the ancestor website of anti climbing. The development team of this website must be good at the front end. Starting to write this blog on April 19, 2019, it is not guaranteed that this code will survive until the end of the month. I hope that the crawler coder will continue to fight against cars later. ...

Posted by mie on Tue, 18 Jan 2022 11:32:03 +0100

My god? It turns out that this is the correct implementation of multithreading

Java Memory Model Thread synchronization Thread synchronization mechanism is a set of data access mechanism suitable for coordinating threads, which can ensure thread safety The thread synchronization mechanism provided by the java platform includes lock, volatile keyword, final keyword, static keyword, and related API s such as obje ...

Posted by Ammar on Tue, 18 Jan 2022 07:27:02 +0100

Learning notes of Essential C + +, Chapter2

preface According to the contents of Chapter 2, the second chapter mainly talks about the writing and calling of functions, which is basically the same as that of C language. Here we focus on recording what we didn't learn when learning C language. We'd better know an application scenario when we learn something. The book gives specific ...

Posted by itazev on Tue, 18 Jan 2022 06:03:03 +0100

Java programming rules

Java programming rules In our work and study, the specification of writing code can not only improve the cleanliness of the code and facilitate reading, but also help us read other people's code and improve our ability. This article provides general guidance for code writing and can help you with good program design. 1.1 programming rules (1 ...

Posted by binumathew on Mon, 17 Jan 2022 21:52:11 +0100