本文详解同步、异步、阻塞、非阻塞,以及IO与这四者的关联,毕竟我当初刚认识这几个名词的时候也是一脸懵。 🔥1.同步阻塞、同步非阻塞、异步阻塞、异步非阻塞 1.同步 同步就是多个事物不能同时工作,只能依次排队进行 2.异步 多个事物可以同时工作,不用依次进行 3.阻塞 线程需要停止等待 4.非阻塞 ...
分类:
其他好文 时间:
2021-07-12 18:13:04
阅读次数:
0
一、数据合并 数据合并主要包括两种操作: 轴向连接(concatenation):pd.concat()可以沿一个轴将多个DataFrame对象连接在一起,形成一个新的DataFrame对象 融合(merging):pd.merge()方法可以根据一个或多个键将不同的DataFrame中的行连接在一 ...
分类:
编程语言 时间:
2021-07-02 16:38:21
阅读次数:
0
查询数据库中的重复数据——MySQL数据库 1、建表语句 DROP TABLE IF EXISTS `t_people`; CREATE TABLE `t_people` ( `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `people_no` ...
分类:
数据库 时间:
2021-06-16 17:52:07
阅读次数:
0
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:
数据库 时间:
2021-06-04 18:53:42
阅读次数:
0
下载地址:https://download.csdn.net/download/qq_31293575/18340399 项目介绍 HOME We come from nature back to nature People from nature, after death should retur ...
分类:
Web程序 时间:
2021-05-24 15:41:13
阅读次数:
0
@Autowired@Qualifier("xiaohon")autowired 依据type装配,如果有多个相同的type的bean需要使用qualifier指定具体的类 <bean class="pojo.People" ><!-- <qualifier value="xiohon"/>--> ...
分类:
编程语言 时间:
2021-05-24 08:57:56
阅读次数:
0
方法一 select t1.* from stadium t1, stadium t2, stadium t3 where t1.people >= 100 and t2.people >= 100 and t3.people >= 100 and ( (t1.id - t2.id = 1 and ...
分类:
其他好文 时间:
2021-05-24 01:17:27
阅读次数:
0
类/装饰器 @property装饰器负责把类中的方法转换成属性来调用 有三种调用方法 方法一:@property直接加在需要转换的方法上 class People: def __init__(self, name, weight, height): self.__name = name self.w ...
分类:
其他好文 时间:
2021-04-13 12:41:12
阅读次数:
0
题目描述 A group of people are standing in a line. Each person has a distinct height. You would like to count the number of unordered pairs of people in t ...
分类:
其他好文 时间:
2021-04-13 12:06:43
阅读次数:
0
from https://towardsdatascience.com/optimizers-for-training-neural-network-59450d71caf6 Many people may be using optimizers while training the neural ...
分类:
Web程序 时间:
2021-04-12 12:26:22
阅读次数:
0