C + + inheritance and derivation

definition Class inheritance is a new class that obtains existing features from existing classes. Or the process of generating a new class from an existing class is the derivation of the class. The original class is called the base class or parent class, and the new class is called the derived class or child class. Derivation and inheritan ...

Posted by Browzer on Sun, 31 Oct 2021 21:16:04 -0700

30 + useful CSS code snippets

It is almost impossible to collect all CSS code fragments in one article, but we have listed some more useful code fragments than others. Don't be frightened by the length of these codes, because they are easy to implement and have good documents. In addition to solving common annoying problems, it also includes some new technologies to solve n ...

Posted by PJNEW on Sun, 31 Oct 2021 21:16:58 -0700

Get data and bind to UI | MAD Skills

Welcome back MAD Skills Collection Paging 3.0! In the last article Paging 3.0 introduction In the article, we discussed the Paging library, learned how to integrate it into the application architecture and integrate it into the data layer of the application. We use PagingSource to obtain and use data for our application, and PagingConfig to cre ...

Posted by basdog22 on Sun, 31 Oct 2021 21:12:12 -0700

Zookeeper source code analysis - detailed explanation of zookeeper server

Previously: The first two articles mainly introduced the startup process of Zookeeper server under cluster mode and the process of leader election. After the leader election, each node in the cluster has corresponding roles: leader, Follower and Observer. Then, according to the corresponding mode, different services will be started respectivel ...

Posted by stickynote427 on Sun, 31 Oct 2021 21:13:00 -0700

Spring Boot YAML configuration

  catalogue 1. YAML syntax 1. Basic grammar 2. Data type 2. Configuration injection 1,@ConfigurationProperties & @Value 2,@PropertySource&@ImportResource&@Bean  3,Profile 1. Multiple profile files 2. Specify profile 3. Profile location 4. External configuration 5. Auto configuration 1. Automatic configuration princ ...

Posted by devai on Sun, 31 Oct 2021 21:03:00 -0700

Qt main interface stuck solution - some specific implementation methods

Transferred from: (7 messages) solution to the jamming of Qt main interface - some specific implementation methods_ qq_37518975 blog - CSDN blog     Qt main interface stuck solution - some specific implementation methods brief introductionWhen we write UI files, in many cases, we need the interface to handle some time-consuming operations in t ...

Posted by Ganlek on Sun, 31 Oct 2021 20:55:02 -0700

Data structure ---- binary tree

1. Tree structure 1.1 definitions Tree is a nonlinear data structure, which is composed of n( n ≥ 0 n\geq0 n ≥ 0) finite nodes form a set with hierarchical relationship. It is called a tree because it looks li ...

Posted by REDFOXES06 on Sun, 31 Oct 2021 20:46:11 -0700

java data structure - diagram - continuous supplement

On the right side of the page, there is a directory index, which can jump to the content you want to see according to the titleIf not on the right, look for the left Main article: https://blog.csdn.net/grd_java/article/details/120526149 Why is there a map Linear table and tree, linear table is limited to a direct precursor and a direct suc ...

Posted by designsubway on Sun, 31 Oct 2021 20:29:17 -0700

[pyqt5 learning - signal and slot] instance timer (solve the interface jam problem)

catalogue 1. What are signals and slots 1) GUI controls (signals) and slots 2) Custom signals and slots 2. Actual combat 1: timer (no custom signal slot and no multithreading) 1) Interface design - use QT designer to design, and then compile pyuic into py file 2) Rewrite UI classes and write logical files   3) Add large cycle in b ...

Posted by vikette on Sun, 31 Oct 2021 20:27:12 -0700

Gogs+Drone+Docker Automated Deployment CICD

Environment centos7 1: Install docker 1. Check your current kernel version through the uname -r command $ uname -r 2. Log in to Centos with root privileges. Ensure that the yum package is up to date. $ sudo yum update 3. Uninstall the old version (if the old version has been installed) $ sudo yum remove docker docker-common docker-selinux d ...

Posted by samUK on Sun, 31 Oct 2021 20:19:00 -0700