Learning basic knowledge of C language I (printf,scanf, array)

Summary of the knowledge points of the introductory programming course that everyone who studies geek time can learn First question digit output requirement Geek time: an introduction to programming that everyone can learn. Lecture 2, thinking problem: digit outputCalculate the number of digits in the decimal representation of an input ...

Added by nitediver on Tue, 25 Jan 2022 13:06:17 +0200

Object oriented design of nodejs tutorial

Learning background Object oriented programming is learning programming to find objects. en... I felt that for a long time, but I haven't found it yet. Maybe it's not pious enough. To get back to business, learning object-oriented plays a vital role in our learning programming. In the early days of programming, we completed the programming wi ...

Added by unlishema.wolf on Mon, 24 Jan 2022 05:32:51 +0200

Python used to be so simple

Python used to be so simple (5) Introduction to Python string data types and various operations (splicing, intercepting and escaping characters) A large part of the operations in Python are related to string operations. Whether it is data acquisition, data processing, and finally to the presentation of data, it is inseparable from the ...

Added by fredfish666 on Sun, 23 Jan 2022 23:01:18 +0200

Interview big factory blood abuse interviewers during the day and teach little sister SQL injection at night! It's exciting!

The following picture shows the little sister pointed by the blogger! Hee hee! 1, What is sql injection SQL injection is one of the more common network attacks. It does not use the BUG of the operating system to realize the attack, but for the negligence of programmers when writing, it realizes no account login and even tampers with the ...

Added by cosmos33 on Sun, 23 Jan 2022 12:06:10 +0200

The core principle of spring cloud RPC: RxJava responsive programming framework, creation operator

Create type operator The creation operator is used to create an Observable object, Observable subject object and pop up data. RxJava has many creation operators, which are roughly as follows: (1) Create (): create an Observable topic object from scratch using the function. (2) defer(): Observable topic objects are created only when subscribe ...

Added by rossh on Sun, 23 Jan 2022 09:04:58 +0200

JAVA object-oriented inheritance super

1 succession 1.1 concept Inheritance is one of the most prominent features of object-oriented Inheritance is to derive a new class from an existing class. The new class can absorb the data properties and behaviors of the existing class and expand new capabilities Java inheritance is a technology that builds new classes based on the definition ...

Added by mrjonnytou on Sun, 23 Jan 2022 00:37:17 +0200

Python | Day 4 operation list

catalogue 1, Traversal list 2, Avoid indent errors 1. Forget indent 2. Forget to indent additional lines of code 3. Unnecessary indentation 4. Unnecessary indentation after loop 5. Missing colon III. create a digital list 1. Use the function range() 3. Perform simple statistical calculations on the list of numbers 4. List parsing IV ...

Added by LukeO on Sat, 22 Jan 2022 20:55:29 +0200

python collaboration in housework

Why use coprocessing? We usually use multithreading or multiprocessing for concurrent programming in Python. For computational tasks, we usually use multiprocessing due to the existence of GIL, while for IO tasks, we can use thread scheduling to make the line give up GIL when executing IO tasks, so as to achieve apparent concurrency. Coprocess ...

Added by nadeemshafi9 on Sat, 22 Jan 2022 11:32:55 +0200

Understanding object-oriented programming

preface The article resources for reference are http://www.coolpython.net/python_primary/oop/polymorphism.html Object Oriented Programming -- Object Oriented Programming, referred to as OOP. Another corresponding programming idea is process oriented programming. OOP comes from nature. In nature, we know classes and examples, such as reptil ...

Added by devarmagan on Sat, 22 Jan 2022 03:55:17 +0200

In the interview, we always encounter reflection mechanism and application?? Don't come and review!

Reflection mechanism and Application What is reflection In the program running state, for any class or object, all properties and methods of the class (including private properties and methods) can be obtained. This function of dynamically obtaining information and dynamically calling object methods is called reflection mechanism. In short, ...

Added by joopeon on Sat, 22 Jan 2022 00:20:50 +0200