摘要: https://www.cnblogs.com/maple-shaw/p/7444109.html 阅读全文
posted @ 2018-12-04 22:33 LW-5208 阅读(74) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/maple-shaw/p/7425655.html 阅读全文
posted @ 2018-12-04 22:32 LW-5208 阅读(99) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/maple-shaw/articles/9060408.html https://www.cnblogs.com/maple-shaw/p/7543850.html#_label1 阅读全文
posted @ 2018-12-04 22:30 LW-5208 阅读(83) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/maple-shaw/p/7404491.html 阅读全文
posted @ 2018-12-04 22:30 LW-5208 阅读(65) 评论(0) 推荐(0)
摘要: 一、什么是MySQL 1、数据的所有存储、检索、管理和处理实际上是由数据库软件——DBMS(数据库管理系统)完成的。MySQL是一种DBMS,即它是一种数据库软件。 (1)MySQL的优势: 成本——MySQL是开放源代码的,一般可以免费使用(甚至可以免费修改)。 性能——MySQL执行很快(非常快 阅读全文
posted @ 2018-11-20 20:04 LW-5208 阅读(460) 评论(0) 推荐(0)
摘要: 一、数据库基础 1、什么是数据库? 数据库(database),保存有组织的数据的容器(通常是一个文件或一组文件)。 数据库和数据库软件的区别: 2、表 (1)表(table),某种特定类型数据的结构化清单。 存储在表中的数据是一种类型的数据或一个清单。数据库中的每一个表都有一个名字,用来表示自己。 阅读全文
posted @ 2018-11-20 18:02 LW-5208 阅读(242) 评论(0) 推荐(0)
摘要: 一、JQuery概述 二、jQuery语法 三、DOM对象和JQuery对象 阅读全文
posted @ 2018-11-13 10:50 LW-5208 阅读(106) 评论(0) 推荐(0)
摘要: 一、window对象 二、history对象和location对象 三、document对象 四、JavaScript内置对象 五、定时函数 阅读全文
posted @ 2018-11-13 10:47 LW-5208 阅读(70) 评论(0) 推荐(0)
摘要: 一、threading模块介绍 multiprocessor模块完全模仿了threading模块的接口,二者在使用层面,有很大的相似性,可查看官网。 官网链接:https://docs.python.org/3/library/threading.html?highlight=threading# 阅读全文
posted @ 2018-10-29 17:37 LW-5208 阅读(170) 评论(0) 推荐(0)
摘要: 一、multiprocessing模块 python中的多线程无法利用多核的优势,如果想要充分使用多核CPU的资源(os.cpu_count()查看),在python中大部分情况下需要使用多进程。python提供了multiprocessing。 multiprocessing模块用来开启子进程,并 阅读全文
posted @ 2018-10-23 16:09 LW-5208 阅读(297) 评论(0) 推荐(0)