Recursive Simple Application (Introduction) C++
Reference Textbook: Proficiency in C++ (9th Edition)
Recursive function: a self-calling function
Functions can also call themselves
Example:
#include<iostream>
void message(int times)
{
if (times > 0)
std::cout << "You are pretty beaut ...
Posted by scraptoft on Sat, 07 Sep 2019 13:33:36 +0200
3D Game Programming
1. Brief Answer Questions
(1) Explain the differences and connections between Game Objects and Assets.
Game object is a real object in the game, which can be selected and operated, while resources are a modification of the game object, such as a cu ...
Posted by mjlogan on Sat, 07 Sep 2019 11:27:09 +0200
Python Learning Diary Inheritance
inherit
What is inheritance? A derived class inherits the fields and methods of the base class. A class can be inherited by more than one class; in python, a class can inherit more than one class.
Parents can be called base classes and superclasses, while subclasses can be called derived classes.
There are two kinds of inheritance: single in ...
Posted by sriphp on Fri, 06 Sep 2019 13:44:37 +0200
What's behind J.U.C. concurrent packages
Preface
J.U.C is the abbreviation of java package java.util.concurrent, short for concurrent package in Chinese. It is a new basic api for writing concurrency related in jdk1.5. Java practitioners must be familiar with, at the same time, in the traffic age, concurrent packages have become a must-ask part of senior development interviews. This a ...
Posted by jmosterb on Fri, 06 Sep 2019 12:47:34 +0200
Message Middleware - RabbitMQ advanced features are all here!
Preface
Before that, we introduced the installation of RabbitMQ, the comparison of major message middleware, the core concept of AMQP, the use of management console, and the Quick Start RabbitMQ. This chapter introduces the advanced features of RabbitMQ. It is introduced in two parts (top/bottom).
How can messages be delivered 100% successfu ...
Posted by dechamp on Fri, 06 Sep 2019 12:32:12 +0200
Chapter 5 The Core Method of spring-connet: refresh
Preface
refresh is the core method of ApplicationContext, if you do this method, the ApplicationContext is all done.
public void refresh() throws BeansException, IllegalStateException {
synchronized (this.startupShutdownMonitor) {
prepareRefresh();
ConfigurableListableBeanFactory beanFactory = obtainFreshBeanFactory();
prepareBe ...
Posted by reyjrar on Fri, 06 Sep 2019 06:03:33 +0200
python Basic Learning Notes 2 (Deep List, Tuple Sequence, Set, Dictionary, Circulation Skills, Conditional Control, Sequence Comparison)
data structure
Deep List
function
There are many ways to list data types, as shown in the following table
list.append(x)
Add an item at the end. It's equivalent to a [len (a):]= [x].
list.extend(iterable)
Expand the list through all items in the traversal. Equivalent to a[len(a):] = iterable.
list.i ...
Posted by Dan06 on Fri, 06 Sep 2019 06:01:08 +0200
Operators in Chapter 3 of "Thoughts of java Programming"
At the bottom level, Java data is manipulated by using operators.
3.1 Simpler Print Statements
Static can be inserted into import to achieve static import, but it is generally not used.
3.2 Use java operators
Operator scoped operands generate ...
Posted by Mortier on Thu, 05 Sep 2019 10:23:48 +0200
Definition and implementation of queues
Preface
Language: Java
Environment: IntelliJ IDEA
JDK Version: 1.8
Source code: GitHub
Definition of queue
Queue is a special linear table. It only allows deletion at the front of the table, but insertion at the back of the table. Like stack, queue is a restricted linear table. The end of the insertion operation is called the end of the que ...
Posted by poppy on Thu, 05 Sep 2019 07:25:12 +0200
Python Quickly Develops Distributed Search Engine Scrapy Speech - Writes spiders crawler file loops to capture content
Write spiders crawler files to cycle through the contents
Request() method, which adds the specified url address to the downloader download page with two required parameters,Parameters: url='url'callback=page handleryield Request() is required for use
The parse.urljoin() method, which is under the urllib library, is an automatic url splicin ...
Posted by dietkinnie on Thu, 05 Sep 2019 02:55:50 +0200